task4/solution12/src/org/apidesign/apifest08/currency/exceptions/ConvertorException.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 11 Oct 2008 23:38:46 +0200
changeset 61 58ec6da75f6f
parent 45 task3/solution12/src/org/apidesign/apifest08/currency/exceptions/ConvertorException.java@251d0ed461fb
permissions -rw-r--r--
Copying structure for task4
     1 package org.apidesign.apifest08.currency.exceptions;
     2 
     3 public class ConvertorException extends RuntimeException {
     4 
     5   public ConvertorException() {
     6   }
     7 
     8   public ConvertorException(String message) {
     9     super(message);
    10   }
    11 
    12   public ConvertorException(Throwable cause) {
    13     super(cause);
    14   }
    15 
    16   public ConvertorException(String message, Throwable cause) {
    17     super(message, cause);
    18   }
    19 
    20 }