task1/solution01/src/org/apidesign/apifest08/currency/CannotProvideValueException.java
author japod@localhost
Sun, 28 Sep 2008 14:12:38 +0200
changeset 6 97662396c0fd
permissions -rw-r--r--
Adding solutions received for task1
     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 }