• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

felleslosninger / einnsyn-backend / 21713946117

05 Feb 2026 01:47PM UTC coverage: 83.243%. Remained the same
21713946117

Pull #586

github

web-flow
Merge c43034565 into 9c10a4332
Pull Request #586: EIN-Codegen

2292 of 3183 branches covered (72.01%)

Branch coverage included in aggregate %.

7211 of 8233 relevant lines covered (87.59%)

3.64 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
src/main/java/no/einnsyn/backend/common/exceptions/models/InternalServerErrorException.java
1
// Auto-generated from our API specification
2
// https://github.com/felleslosninger/einnsyn-api-spec
3

4
package no.einnsyn.backend.common.exceptions.models;
5

6
import lombok.Getter;
7
import no.einnsyn.backend.common.responses.models.ErrorResponse;
8

9
@Getter
10
public class InternalServerErrorException extends EInnsynException {
11

12
  public InternalServerErrorException(String message, Throwable cause) {
13
    super(message, cause, "internalServerError");
×
14
  }
×
15

16
  public InternalServerErrorException(String message) {
17
    super(message, "internalServerError");
×
18
  }
×
19

20
  public ErrorResponse toClientResponse() {
21
    return new ClientResponse(this.getMessage());
×
22
  }
23

24
  @Getter
25
  public static class ClientResponse implements ErrorResponse {
26
    protected final String type = "internalServerError";
×
27

28
    protected String message;
29

30
    public ClientResponse(String message) {
31
      super();
×
32
      this.message = message;
×
33
    }
×
34
  }
35
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc