task2/solution12/src/org/apidesign/apifest08/currency/exceptions/ConvertorException.java
changeset 29 f6073056b9fe
parent 20 7ca97f802b5a
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/task2/solution12/src/org/apidesign/apifest08/currency/exceptions/ConvertorException.java	Wed Oct 01 10:43:05 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 +}