task4/solution06/src/org/apidesign/apifest08/currency/ConversionException.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 18 Oct 2008 08:40:32 +0200
changeset 74 c2585d97e1e3
parent 45 251d0ed461fb
permissions -rw-r--r--
We need to remove XML files describing the result of test run in case of successful build (e.g. there was a test failure) as that prevents Hudson from claiming the build is unstable.
     1 package org.apidesign.apifest08.currency;
     2 
     3 /**
     4  * Indicates that a desired conversion cannot be performed.
     5  */
     6 public class ConversionException extends CurrencyException {
     7 	
     8 	private static final long serialVersionUID = 1L;
     9 
    10 	public ConversionException() {
    11 		super();
    12 	}
    13 
    14 	public ConversionException(String message, Throwable cause) {
    15 		super(message, cause);		
    16 	}
    17 
    18 	public ConversionException(String message) {
    19 		super(message);
    20 	}
    21 
    22 	public ConversionException(Throwable cause) {
    23 		super(cause);
    24 	}
    25 	
    26 }