1
0
mirror of https://github.com/twiglet/cs2j.git synced 2025-01-18 13:15:17 +01:00

99 lines
2.6 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Class xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="urn:www.twigletsoftware.com:schemas:txtemplate:1:0">
<Imports />
<Java>Exception</Java>
<Name>System.Exception</Name>
<Uses />
<Inherits>
<Type>System.Object</Type>
</Inherits>
<Methods />
<Properties>
<Property>
<Imports />
<Java>${this}.getMessage()</Java>
<Type>System.String</Type>
<Name>Message</Name>
<Get>${this}.getMessage()</Get>
<Set>${this}.setMessage(${value})</Set>
</Property>
<Property>
<Imports>
<Import>RusticiSoftware.System.ExceptionSupport</Import>
</Imports>
<Java>ExceptionSupport.getSource(${this})</Java>
<Type>System.String</Type>
<Name>Source</Name>
<Get>ExceptionSupport.getSource(${this})</Get>
<Set>${this}.setSource(${value})</Set>
</Property>
<Property>
<Imports />
<Java>${this}.getStackTrace().toString()</Java>
<Type>System.String</Type>
<Name>StackTrace</Name>
<Get>${this}.getStackTrace().toString()</Get>
<Set>${this}.setStackTrace(${value})</Set>
</Property>
<Property>
<Imports />
<Java>((Exception)${this}.getCause())</Java>
<Type>System.Exception</Type>
<Name>InnerException</Name>
<Get>((Exception)${this}.getCause())</Get>
<Set>${this}.setInnerException(${value})</Set>
</Property>
</Properties>
<Events />
<Indexers />
<Constructors>
<Constructor>
<Imports />
<Java>new Exception()</Java>
<Params />
</Constructor>
<Constructor>
<Imports />
<Java>new Exception(${message})</Java>
<Params>
<Param>
<Type>System.String</Type>
<Name>message</Name>
</Param>
</Params>
</Constructor>
<Constructor>
<Imports />
<Java>new Exception(${info},${ctxt})</Java>
<Params>
<Param>
<Type>System.SerializationInfo</Type>
<Name>info</Name>
</Param>
<Param>
<Type>System.StreamingContext</Type>
<Name>ctxt</Name>
</Param>
</Params>
</Constructor>
<Constructor>
<Imports />
<Java>new Exception(${message}, ${inner})</Java>
<Params>
<Param>
<Type>System.String</Type>
<Name>message</Name>
</Param>
<Param>
<Type>System.Exception</Type>
<Name>inner</Name>
</Param>
</Params>
</Constructor>
</Constructors>
<Fields />
<Casts />
<UnaryOps />
<BinaryOps />
</Class>