# HG changeset patch # User japod@localhost # Date 1222780644 -7200 # Node ID 724f953a5f3e2a691ade506cae4e32d66663677c # Parent 953f221cb98617cd2e19e2c00cf415ad386b9782 finishing update to 1.5 (sol 12) diff -r 953f221cb986 -r 724f953a5f3e task1/solution12/src/org/apidesign/apifest08/currency/ConvertorException.java --- a/task1/solution12/src/org/apidesign/apifest08/currency/ConvertorException.java Tue Sep 30 15:15:22 2008 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,20 +0,0 @@ -package org.apidesign.apifest08.currency; - -public class ConvertorException extends RuntimeException { - - public ConvertorException() { - } - - public ConvertorException(String message) { - super(message); - } - - public ConvertorException(Throwable cause) { - super(cause); - } - - public ConvertorException(String message, Throwable cause) { - super(message, cause); - } - -}