task1/solution01/src/org/apidesign/apifest08/currency/ConvertorNotAvailableException.java
author japod@localhost
Tue, 30 Sep 2008 16:11:32 +0200
changeset 28 36331f7244bd
permissions -rw-r--r--
finishing update of solution 04 to 1.5
     1 package org.apidesign.apifest08.currency;
     2 
     3 /**
     4  * No convertor is available for current conversion settings
     5  * @author Ladislav Vitasek
     6  */
     7 public class ConvertorNotAvailableException extends Exception {
     8     public ConvertorNotAvailableException() {
     9 
    10     }
    11 
    12     public ConvertorNotAvailableException(String message) {
    13         super(message);
    14     }
    15 
    16     public ConvertorNotAvailableException(String message, Throwable cause) {
    17         super(message, cause);
    18     }
    19 
    20     public ConvertorNotAvailableException(Throwable cause) {
    21         super(cause);
    22     }
    23 }