1 package eu.scape_project.watch.utils.exception;
2
3 public class NotNullConstraintException extends RuntimeException {
4
5 private static final long serialVersionUID = 8049303862454909020L;
6
7 public NotNullConstraintException() {
8 super();
9 }
10
11 public NotNullConstraintException(String message) {
12 super(message);
13 }
14
15 public NotNullConstraintException(Throwable cause) {
16 super(cause);
17 }
18
19 public NotNullConstraintException(String message, Throwable cause) {
20 super(message, cause);
21 }
22
23 }