2015-07-24 11:32:22 +03:00
|
|
|
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 {
|
|
|
|
|
2015-12-25 23:49:28 +02:00
|
|
|
private static final long serialVersionUID = 1L;
|
2015-08-18 22:54:15 +03:00
|
|
|
|
2015-12-25 23:49:28 +02:00
|
|
|
public ApplicationException(Throwable cause) {
|
|
|
|
super(cause);
|
|
|
|
}
|
2015-07-19 12:44:51 +03:00
|
|
|
}
|