task3/solution13/src/org/apidesign/apifest08/currency/ConvertorException.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 07 Oct 2008 11:05:34 +0200
changeset 45 251d0ed461fb
parent 41 task2/solution13/src/org/apidesign/apifest08/currency/ConvertorException.java@a7e6f84fb078
permissions -rw-r--r--
Copying all solution that advanced into round #3 into task3 directory
     1 package org.apidesign.apifest08.currency;
     2 
     3 /**
     4  * Common Convertor exception.
     5  * 
     6  * @author arnostvalicek
     7  */
     8 public class ConvertorException extends RuntimeException {
     9 
    10     public ConvertorException(Throwable cause) {
    11         super(cause);
    12     }
    13 
    14     public ConvertorException(String message, Throwable cause) {
    15         super(message, cause);
    16     }
    17 
    18     public ConvertorException(String message) {
    19         super(message);
    20     }
    21 
    22     public ConvertorException() {
    23     }
    24   
    25 }