Skip to content

Commit d9746b5

Browse files
committed
Adding missing Exceptions
1 parent 18eeeb7 commit d9746b5

5 files changed

Lines changed: 100 additions & 0 deletions

File tree

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
package org.texttechnologylab.utilities.exception;
2+
3+
public class AllreadyExistException extends Exception {
4+
5+
public AllreadyExistException() {
6+
}
7+
8+
public AllreadyExistException(String pMessage) {
9+
super(pMessage);
10+
}
11+
12+
public AllreadyExistException(String pMessage, Throwable pCause) {
13+
super(pMessage, pCause);
14+
}
15+
16+
public AllreadyExistException(Throwable pCause) {
17+
super(pCause);
18+
}
19+
20+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
package org.texttechnologylab.utilities.exception;
2+
3+
public class InvalidModelException extends Exception {
4+
5+
public InvalidModelException() {
6+
}
7+
8+
public InvalidModelException(String pMessage) {
9+
super(pMessage);
10+
}
11+
12+
public InvalidModelException(String pMessage, Throwable pCause) {
13+
super(pMessage, pCause);
14+
}
15+
16+
public InvalidModelException(Throwable pCause) {
17+
super(pCause);
18+
}
19+
20+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
package org.texttechnologylab.utilities.exception;
2+
3+
public class NotExistException extends Exception {
4+
5+
public NotExistException() {
6+
}
7+
8+
public NotExistException(String pMessage) {
9+
super(pMessage);
10+
}
11+
12+
public NotExistException(String pMessage, Throwable pCause) {
13+
super(pMessage, pCause);
14+
}
15+
16+
public NotExistException(Throwable pCause) {
17+
super(pCause);
18+
}
19+
20+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
package org.texttechnologylab.utilities.exception;
2+
3+
public class ParamNotExistException extends Exception {
4+
5+
public ParamNotExistException() {
6+
}
7+
8+
public ParamNotExistException(String pMessage) {
9+
super(pMessage);
10+
}
11+
12+
public ParamNotExistException(String pMessage, Throwable pCause) {
13+
super(pMessage, pCause);
14+
}
15+
16+
public ParamNotExistException(Throwable pCause) {
17+
super(pCause);
18+
}
19+
20+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
package org.texttechnologylab.utilities.exception;
2+
3+
public class ParamRequiredException extends Exception {
4+
5+
public ParamRequiredException() {
6+
}
7+
8+
public ParamRequiredException(String pMessage) {
9+
super(pMessage);
10+
}
11+
12+
public ParamRequiredException(String pMessage, Throwable pCause) {
13+
super(pMessage, pCause);
14+
}
15+
16+
public ParamRequiredException(Throwable pCause) {
17+
super(pCause);
18+
}
19+
20+
}

0 commit comments

Comments
 (0)