#90 Finished the example code

This commit is contained in:
Ilkka Seppala
2015-07-19 12:44:51 +03:00
parent 4ad5e84d0e
commit c4556561c4
10 changed files with 98 additions and 1 deletions

View File

@ -0,0 +1,8 @@
package com.iluwatar;
public class ApplicationException extends RuntimeException {
public ApplicationException(Throwable cause) {
super(cause);
}
}