KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > math > UndefinedOperationException


1 /*
2  * UndefinedOperationException.java
3  *
4  * Created on April 18, 2005, 11:16 PM
5  *
6  * To change this template, choose Tools | Options and locate the template under
7  * the Source Creation and Management node. Right-click the template and choose
8  * Open. You can then make changes to the template in the Source Editor.
9  */

10
11 package math;
12
13 /**
14  *
15  * @author jungi
16  */

17 public class UndefinedOperationException extends RuntimeException JavaDoc {
18     
19     /**
20      * Creates a new instance of <code>UndefinedOperationException</code> without detail message.
21      */

22     public UndefinedOperationException() {
23     }
24     
25     
26     /**
27      * Constructs an instance of <code>UndefinedOperationException</code> with the specified detail message.
28      * @param msg the detail message.
29      */

30     public UndefinedOperationException(String JavaDoc msg) {
31         super(msg);
32     }
33     
34     public UndefinedOperationException(String JavaDoc msg, Throwable JavaDoc cause) {
35         super(msg, cause);
36     }
37         
38 }
39
Popular Tags