Parent: [d60174] (diff)

Download this file

OWLOntologyStorageException_Exception.java    55 lines (45 with data), 1.3 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package net.timbusproject.dpes.alternative;
import javax.xml.ws.WebFault;
/**
* This class was generated by the JAX-WS RI.
* JAX-WS RI 2.2.4-b01
* Generated source version: 2.2
*
*/
@WebFault(name = "OWLOntologyStorageException", targetNamespace = "http://alternative.dpes.timbusproject.net/")
public class OWLOntologyStorageException_Exception
extends Exception
{
/**
* Java type that goes as soapenv:Fault detail element.
*
*/
private OWLOntologyStorageException faultInfo;
/**
*
* @param message
* @param faultInfo
*/
public OWLOntologyStorageException_Exception(String message, OWLOntologyStorageException faultInfo) {
super(message);
this.faultInfo = faultInfo;
}
/**
*
* @param message
* @param faultInfo
* @param cause
*/
public OWLOntologyStorageException_Exception(String message, OWLOntologyStorageException faultInfo, Throwable cause) {
super(message, cause);
this.faultInfo = faultInfo;
}
/**
*
* @return
* returns fault bean: net.timbusproject.dpes.alternative.OWLOntologyStorageException
*/
public OWLOntologyStorageException getFaultInfo() {
return faultInfo;
}
}