KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jbpm > bpel > tutorial > atm > types > OperationFault


1 // This class was generated by the JAXRPC SI, do not edit.
2
// Contents subject to change without notice.
3
// JAX-RPC Standard Implementation (1.1.2_01, compilación R40)
4
// Generated source version: 1.1.2
5

6 package org.jbpm.bpel.tutorial.atm.types;
7
8
9 public class OperationFault extends Exception JavaDoc {
10     private int code;
11     private java.lang.String JavaDoc description;
12     
13     
14     public OperationFault(int code, java.lang.String JavaDoc description) {
15         super(description);
16         this.code = code;
17         this.description = description;
18     }
19     
20     public int getCode() {
21         return code;
22     }
23     
24     public java.lang.String JavaDoc getDescription() {
25         return description;
26     }
27 }
28
Popular Tags