You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
342 B
16 lines
342 B
package shared.exceptions;
|
|
|
|
/**
|
|
* An exception thrown when a specific mark cannot be found.
|
|
*/
|
|
public class MarkNotFoundException extends Exception {
|
|
|
|
public MarkNotFoundException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
public MarkNotFoundException(String message, Throwable cause) {
|
|
super(message, cause);
|
|
}
|
|
}
|