KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > cz > cuni > sofa > lib > BAD_PARAM


1 /* $Id: BAD_PARAM.java,v 1.1.1.1 2003/02/11 16:19:40 bures Exp $ */
2
3 /* This code is based on the OMG's IDL Java Language mapping
4  * definitions (OMG document formal/99-06-02).
5  */

6 package cz.cuni.sofa.lib;
7
8 public class BAD_PARAM extends cz.cuni.sofa.lib.SystemException {
9
10   public BAD_PARAM() {
11     super(null, 0);
12   }
13
14   public BAD_PARAM(int minor) {
15     super(null, minor);
16   }
17
18   public BAD_PARAM(String JavaDoc reason) {
19     super(reason, 0);
20   }
21
22   public BAD_PARAM(String JavaDoc reason, int minor) {
23     super(reason, minor);
24   }
25
26 }
27
Popular Tags