task4/solution12/src/org/apidesign/apifest08/currency/exceptions/ConvertorException.java
changeset 61 58ec6da75f6f
parent 45 251d0ed461fb
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/task4/solution12/src/org/apidesign/apifest08/currency/exceptions/ConvertorException.java	Sat Oct 11 23:38:46 2008 +0200
     1.3 @@ -0,0 +1,20 @@
     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 +}