task3/solution12/src/org/apidesign/apifest08/currency/exceptions/ConvertorException.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 07 Oct 2008 11:05:34 +0200
changeset 45 251d0ed461fb
parent 29 task2/solution12/src/org/apidesign/apifest08/currency/exceptions/ConvertorException.java@f6073056b9fe
permissions -rw-r--r--
Copying all solution that advanced into round #3 into task3 directory
     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 }