org.jcoderz.commons.logging
Interface ExceptionType

All Known Implementing Classes:
ExceptionTypeImpl

public interface ExceptionType

Java content class for ExceptionType complex type.

The following schema fragment specifies the expected content contained within this java content object. (defined at file:/home/fawkez/dev/src/xml/schema/log-message.xsd line 79)

 <complexType name="ExceptionType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="Message" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="Stacktrace" type="{http://www.jcoderz.org/commons/logging}StacktraceType" minOccurs="0"/>
         <element name="Cause" type="{http://www.jcoderz.org/commons/logging}CauseType" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 


Method Summary
 CauseType getCause()
          Gets the value of the cause property.
 String getMessage()
          Gets the value of the message property.
 StacktraceType getStacktrace()
          Gets the value of the stacktrace property.
 void setCause(CauseType value)
          Sets the value of the cause property.
 void setMessage(String value)
          Sets the value of the message property.
 void setStacktrace(StacktraceType value)
          Sets the value of the stacktrace property.
 

Method Detail

getStacktrace

StacktraceType getStacktrace()
Gets the value of the stacktrace property.

Returns:
possible object is StacktraceType

setStacktrace

void setStacktrace(StacktraceType value)
Sets the value of the stacktrace property.

Parameters:
value - allowed object is StacktraceType

getMessage

String getMessage()
Gets the value of the message property.

Returns:
possible object is String

setMessage

void setMessage(String value)
Sets the value of the message property.

Parameters:
value - allowed object is String

getCause

CauseType getCause()
Gets the value of the cause property.

Returns:
possible object is CauseType

setCause

void setCause(CauseType value)
Sets the value of the cause property.

Parameters:
value - allowed object is CauseType


Copyright 2007 The jCoderZ Project.