task3/solution07/src/org/apidesign/apifest08/currency/IllegalRequestSubtypeException.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 07 Oct 2008 11:05:34 +0200
changeset 45 251d0ed461fb
parent 29 task2/solution07/src/org/apidesign/apifest08/currency/IllegalRequestSubtypeException.java@f6073056b9fe
permissions -rw-r--r--
Copying all solution that advanced into round #3 into task3 directory
     1 /*
     2  * To change this template, choose Tools | Templates
     3  * and open the template in the editor.
     4  */
     5 
     6 package org.apidesign.apifest08.currency;
     7 
     8 /**
     9  * Rised when a {@link Convertor} implementation cannot handle a particular subtype of {@link Convertor.ConversionRequest}.
    10  * @author jdvorak
    11  */
    12 public class IllegalRequestSubtypeException extends IllegalArgumentException {
    13 
    14     public IllegalRequestSubtypeException() {
    15         super();
    16     }
    17     
    18     public IllegalRequestSubtypeException( final String msg ) {
    19         super( msg );
    20     }
    21     
    22     public IllegalRequestSubtypeException( final Throwable cause ) {
    23         super( cause );
    24     }
    25     
    26     public IllegalRequestSubtypeException( final String msg, final Throwable cause ) {
    27         super( msg, cause );
    28     }
    29     
    30 }