Files
java-design-patterns/front-controller/src/main/java/com/iluwatar/front/controller/ApplicationException.java

16 lines
267 B
Java
Raw Normal View History

package com.iluwatar.front.controller;
2015-07-19 12:44:51 +03:00
2015-08-18 22:54:15 +03:00
/**
*
* Custom exception type
*
*/
2015-07-19 12:44:51 +03:00
public class ApplicationException extends RuntimeException {
private static final long serialVersionUID = 1L;
2015-08-18 22:54:15 +03:00
public ApplicationException(Throwable cause) {
super(cause);
}
2015-07-19 12:44:51 +03:00
}