task1/solution06/src/org/apidesign/apifest08/currency/UnsupportedConversionException.java
changeset 21 61e4c4c120fd
parent 6 97662396c0fd
     1.1 --- a/task1/solution06/src/org/apidesign/apifest08/currency/UnsupportedConversionException.java	Sun Sep 28 14:12:38 2008 +0200
     1.2 +++ b/task1/solution06/src/org/apidesign/apifest08/currency/UnsupportedConversionException.java	Tue Sep 30 12:24:45 2008 +0200
     1.3 @@ -2,7 +2,7 @@
     1.4  
     1.5  import java.util.Currency;
     1.6  
     1.7 -public class UnsupportedConversionException extends ConversionException{
     1.8 +public final class UnsupportedConversionException extends ConversionException{
     1.9  
    1.10  	private static final long serialVersionUID = 1L; 
    1.11  	
    1.12 @@ -10,7 +10,7 @@
    1.13  	private Currency to;
    1.14  
    1.15  	public UnsupportedConversionException(Currency from, Currency to) {
    1.16 -		super("Conversion from  the currency " + from + " to the currency " + to + " or vice versa in not supported yet. Missing bid.");
    1.17 +		super("Conversion from  the currency " + from + " to the currency " + to + " or vice versa in not supported.");
    1.18  		this.from = from;
    1.19  		this.to = to;
    1.20  	}