Created
November 24, 2018 17:09
-
-
Save Opalo/07927e0175203533612e162e802e0059 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
@ToString(callSuper = true) | |
abstract class DomainException extends ResponseStatusException { | |
DomainException(HttpStatus status, String reason) { | |
super(status, reason); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment