<xsd:element name="ExceptionSeverity">
<xsd:annotation>
<xsd:documentation>How severe the exception is. Fatal means system processed nothing. Warning means system processed something, but perhaps incompletely. Information means system processed everything, but a problem *may* occur that needs notification.</xsd:documentation>
</xsd:annotation>
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="Fatal">
<xsd:annotation>
<xsd:documentation>Fatal means system processed nothing. </xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="Warning">
<xsd:annotation>
<xsd:documentation> Warning means system processed something, but perhaps incompletely. </xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="Information">
<xsd:annotation>
<xsd:documentation>Information means system processed everything, but a problem *may* occur that needs notification.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
|