Skip to content

Instantly share code, notes, and snippets.

@Opalo
Created November 24, 2018 17:09
Show Gist options
  • Save Opalo/07927e0175203533612e162e802e0059 to your computer and use it in GitHub Desktop.
Save Opalo/07927e0175203533612e162e802e0059 to your computer and use it in GitHub Desktop.
@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