task2/solution07/src/org/apidesign/apifest08/currency/IllegalRequestSubtypeException.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 01 Oct 2008 10:43:05 +0200
changeset 29 f6073056b9fe
parent 6 task1/solution07/src/org/apidesign/apifest08/currency/IllegalRequestSubtypeException.java@97662396c0fd
permissions -rw-r--r--
Getting ready for task2: copying all solutions to new locations
     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 }