#107 Front Controller example JavaDoc

This commit is contained in:
Ilkka Seppala
2015-08-18 22:54:15 +03:00
parent de784cfdc1
commit c5c4a68c6f
3 changed files with 27 additions and 11 deletions

View File

@ -1,8 +1,15 @@
package com.iluwatar.front.controller;
/**
*
* Custom exception type
*
*/
public class ApplicationException extends RuntimeException {
public ApplicationException(Throwable cause) {
private static final long serialVersionUID = 1L;
public ApplicationException(Throwable cause) {
super(cause);
}
}