task2/solution01/src/org/apidesign/apifest08/currency/CannotInstantiateFactoryException.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 01 Oct 2008 10:43:05 +0200
changeset 29 f6073056b9fe
parent 6 task1/solution01/src/org/apidesign/apifest08/currency/CannotInstantiateFactoryException.java@97662396c0fd
permissions -rw-r--r--
Getting ready for task2: copying all solutions to new locations
     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 }