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

felleslosninger / einnsyn-backend / 21687028034

04 Feb 2026 08:22PM UTC coverage: 83.003% (-0.4%) from 83.423%
21687028034

push

github

web-flow
Merge pull request #585 from felleslosninger/gne-code-quality-fixes

EIN-X: Github Code Quality fixes

2281 of 3179 branches covered (71.75%)

Branch coverage included in aggregate %.

7188 of 8229 relevant lines covered (87.35%)

3.63 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
  @Override
21
  public ErrorResponse toClientResponse() {
22
    return new ClientResponse(this.getMessage());
×
23
  }
24

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

29
    protected String message;
30

31
    public ClientResponse(String message) {
32
      super();
×
33
      this.message = message;
×
34
    }
×
35
  }
36
}
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