/* * Copyright LGPL3 * YES Technology Association * http://yestech.org * * http://www.opensource.org/licenses/lgpl-3.0.html */ /* * * Author: Artie Copeland * Last Modified Date: $DateTime: $ */ package org.yestech.lib.currency; /** * @author Artie Copeland * @version $Revision: $ */ public class CurrencyException extends RuntimeException { public CurrencyException() { } public CurrencyException(String message) { super(message); } public CurrencyException(String message, Throwable cause) { super(message, cause); } public CurrencyException(Throwable cause) { super(cause); } }