Skip to content

Commit

Permalink
på vei vekk fra FeilFactory
Browse files Browse the repository at this point in the history
  • Loading branch information
janolaveide committed Feb 16, 2021
1 parent 496374c commit e0c154d
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@

public class FunksjonellException extends VLException {

public FunksjonellException(String kode, String msg, String hint) {
this(kode, msg, hint, null);
}

public FunksjonellException(String kode, String msg, String hint, Throwable t) {
this(new FunksjonellFeil(kode, kode, hint, LogLevel.WARN, FunksjonellException.class, t));
}

public FunksjonellException(String kode, String msg, Throwable t, Object... args) {
this(kode, msg, null, LogLevel.WARN, t, args);
}
Expand Down

0 comments on commit e0c154d

Please sign in to comment.