task1/solution02/src/org/apidesign/apifest08/currency/UnsupportedConversionException.java
author japod@localhost
Sun, 28 Sep 2008 14:12:38 +0200
changeset 6 97662396c0fd
permissions -rw-r--r--
Adding solutions received for task1
     1 package org.apidesign.apifest08.currency;
     2 
     3 /**
     4  * Exception thrown when conversion is not supported.
     5  * @author lukas
     6  *
     7  */
     8 public class UnsupportedConversionException extends IllegalArgumentException {
     9 	private static final long serialVersionUID = 4412475695345865196L;
    10 
    11 	public UnsupportedConversionException() {
    12 		super();
    13 	}
    14 
    15 	public UnsupportedConversionException(String message, Throwable cause) {
    16 		super(message, cause);
    17 	}
    18 
    19 	public UnsupportedConversionException(String s) {
    20 		super(s);
    21 	}
    22 
    23 	public UnsupportedConversionException(Throwable cause) {
    24 		super(cause);
    25 	}
    26 
    27 
    28 }