task4/solution07/src/org/apidesign/apifest08/currency/IllegalRequestSubtypeException.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 11 Oct 2008 23:38:46 +0200
changeset 61 58ec6da75f6f
parent 45 task3/solution07/src/org/apidesign/apifest08/currency/IllegalRequestSubtypeException.java@251d0ed461fb
permissions -rw-r--r--
Copying structure for task4
     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 }