task1/solution01/src/org/apidesign/apifest08/currency/CannotInstantiateFactoryException.java
author japod@localhost
Tue, 30 Sep 2008 16:11:32 +0200
changeset 28 36331f7244bd
permissions -rw-r--r--
finishing update of solution 04 to 1.5
     1 package org.apidesign.apifest08.currency;
     2 
     3 /**
     4  * Failed to instantiate class for factory
     5  * @author Ladislav Vitasek
     6  */
     7 public class CannotInstantiateFactoryException extends Exception {
     8     public CannotInstantiateFactoryException(Throwable e) {
     9         super(e);
    10     }
    11 
    12     public CannotInstantiateFactoryException(String message) {
    13         super(message);
    14     }
    15 
    16     public CannotInstantiateFactoryException() {
    17         super();
    18     }
    19 
    20     public CannotInstantiateFactoryException(String message, Throwable cause) {
    21         super(message, cause);
    22     }
    23 }