generated from hmcts/spring-boot-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5ba14cc
commit 7b6883e
Showing
3 changed files
with
96 additions
and
19 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
src/main/java/uk/gov/hmcts/opal/exception/SchemaConfigurationException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package uk.gov.hmcts.opal.exception; | ||
|
||
public class SchemaConfigurationException extends RuntimeException { | ||
|
||
public SchemaConfigurationException(String msg) { | ||
super(msg); | ||
} | ||
|
||
public SchemaConfigurationException(Throwable t) { | ||
super(t); | ||
} | ||
|
||
public SchemaConfigurationException(String message, Throwable t) { | ||
super(message, t); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters