task2/solution01/src/org/apidesign/apifest08/currency/CannotProvideValueException.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/CannotProvideValueException.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  * Used when value cannot be get from the source
     5  * @author Ladislav Vitasek
     6  */
     7 public class CannotProvideValueException extends RuntimeException {
     8 
     9     public CannotProvideValueException() {
    10         super();
    11     }
    12 
    13     public CannotProvideValueException(String message) {
    14         super(message);
    15     }
    16 
    17     public CannotProvideValueException(String message, Throwable cause) {
    18         super(message, cause);
    19     }
    20 
    21     public CannotProvideValueException(Throwable cause) {
    22         super(cause);
    23     }
    24 }