task2/solution13/src/org/apidesign/apifest08/currency/ConvertorException.java
changeset 41 a7e6f84fb078
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/task2/solution13/src/org/apidesign/apifest08/currency/ConvertorException.java	Tue Oct 07 01:18:23 2008 +0200
     1.3 @@ -0,0 +1,25 @@
     1.4 +package org.apidesign.apifest08.currency;
     1.5 +
     1.6 +/**
     1.7 + * Common Convertor exception.
     1.8 + * 
     1.9 + * @author arnostvalicek
    1.10 + */
    1.11 +public class ConvertorException extends RuntimeException {
    1.12 +
    1.13 +    public ConvertorException(Throwable cause) {
    1.14 +        super(cause);
    1.15 +    }
    1.16 +
    1.17 +    public ConvertorException(String message, Throwable cause) {
    1.18 +        super(message, cause);
    1.19 +    }
    1.20 +
    1.21 +    public ConvertorException(String message) {
    1.22 +        super(message);
    1.23 +    }
    1.24 +
    1.25 +    public ConvertorException() {
    1.26 +    }
    1.27 +  
    1.28 +}