KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > nightlabs > ipanema > transfer > AnchorMismatchException


1 /*
2  * Created on 29.10.2004
3  */

4 package com.nightlabs.ipanema.transfer;
5
6 /**
7  * This exception is thrown by <tt>Anchor.bookTransfer(..)</tt>, if the <tt>Anchor</tt> is not
8  * one side of the <tt>Transfer</tt>.
9  *
10  * @author Marco Schulze - marco at nightlabs dot de
11  */

12 public class AnchorMismatchException extends RuntimeException JavaDoc
13 {
14
15     public AnchorMismatchException() { }
16
17     /**
18      * @param message
19      */

20     public AnchorMismatchException(String JavaDoc message)
21     {
22         super(message);
23     }
24
25     /**
26      * @param cause
27      */

28     public AnchorMismatchException(Throwable JavaDoc cause)
29     {
30         super(cause);
31     }
32
33     /**
34      * @param message
35      * @param cause
36      */

37     public AnchorMismatchException(String JavaDoc message, Throwable JavaDoc cause)
38     {
39         super(message, cause);
40     }
41
42 }
43
Popular Tags