mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-18 17:26:44 +00:00
16 lines
271 B
Java
16 lines
271 B
Java
package com.iluwatar.front.controller;
|
|
|
|
/**
|
|
*
|
|
* Custom exception type
|
|
*
|
|
*/
|
|
public class ApplicationException extends RuntimeException {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
public ApplicationException(Throwable cause) {
|
|
super(cause);
|
|
}
|
|
}
|