finishing update to 1.5 (sol 12)
authorjapod@localhost
Tue, 30 Sep 2008 15:17:24 +0200
changeset 27724f953a5f3e
parent 26 953f221cb986
child 28 36331f7244bd
finishing update to 1.5 (sol 12)
task1/solution12/src/org/apidesign/apifest08/currency/ConvertorException.java
     1.1 --- a/task1/solution12/src/org/apidesign/apifest08/currency/ConvertorException.java	Tue Sep 30 15:15:22 2008 +0200
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,20 +0,0 @@
     1.4 -package org.apidesign.apifest08.currency;
     1.5 -
     1.6 -public class ConvertorException extends RuntimeException {
     1.7 -
     1.8 -  public ConvertorException() {
     1.9 -  }
    1.10 -
    1.11 -  public ConvertorException(String message) {
    1.12 -    super(message);
    1.13 -  }
    1.14 -
    1.15 -  public ConvertorException(Throwable cause) {
    1.16 -    super(cause);
    1.17 -  }
    1.18 -
    1.19 -  public ConvertorException(String message, Throwable cause) {
    1.20 -    super(message, cause);
    1.21 -  }
    1.22 -
    1.23 -}