task4/solution12/src/org/apidesign/apifest08/currency/exceptions/ConvertorException.java
changeset 72 c6b50876b5cf
parent 71 978f6a78c22e
child 73 e8b0f13fd4fb
child 80 067f86d76ac7
     1.1 --- a/task4/solution12/src/org/apidesign/apifest08/currency/exceptions/ConvertorException.java	Fri Oct 17 17:54:38 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.exceptions;
     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 -}