mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-06-09 12:14:41 +00:00
+16
@@ -0,0 +1,16 @@
|
||||
package com.iluwatar.exception;
|
||||
|
||||
/**
|
||||
* Exception happens in application during business-logic execution.
|
||||
*/
|
||||
public class ApplicationException extends RuntimeException {
|
||||
|
||||
/**
|
||||
* Inherited constructor with exception message.
|
||||
*
|
||||
* @param message exception message
|
||||
*/
|
||||
public ApplicationException(String message) {
|
||||
super(message);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user