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

IOThrowable is IOThrowable ....

This commit is contained in:
Kevin Glynn 2012-02-27 10:12:56 +01:00
parent c4e9e710f4
commit 90b75f3bda

View File

@ -8,8 +8,10 @@
--> -->
<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"> <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 /> <Imports>
<Java>Throwable</Java> <Import>java.io.IOException</Import>
</Imports>
<Java>IOException</Java>
<Name>System.IO.IOException</Name> <Name>System.IO.IOException</Name>
<Uses /> <Uses />
<Inherits> <Inherits>
@ -21,13 +23,17 @@
<Indexers /> <Indexers />
<Constructors> <Constructors>
<Constructor> <Constructor>
<Imports /> <Imports>
<Java>new Throwable()</Java> <Import>java.io.IOException</Import>
</Imports>
<Java>new IOException()</Java>
<Params /> <Params />
</Constructor> </Constructor>
<Constructor> <Constructor>
<Imports /> <Imports>
<Java>new Throwable(${message})</Java> <Import>java.io.IOException</Import>
</Imports>
<Java>new IOException(${message})</Java>
<Params> <Params>
<Param> <Param>
<Type>System.String</Type> <Type>System.String</Type>
@ -36,7 +42,9 @@
</Params> </Params>
</Constructor> </Constructor>
<Constructor> <Constructor>
<Imports /> <Imports>
<Import>java.io.IOException</Import>
</Imports>
<Java>new IOException(${info},${ctxt})</Java> <Java>new IOException(${info},${ctxt})</Java>
<Params> <Params>
<Param> <Param>
@ -50,8 +58,10 @@
</Params> </Params>
</Constructor> </Constructor>
<Constructor> <Constructor>
<Imports /> <Imports>
<Java>new Throwable(${message}, ${inner})</Java> <Import>java.io.IOException</Import>
</Imports>
<Java>new IOException(${message}, ${inner})</Java>
<Params> <Params>
<Param> <Param>
<Type>System.String</Type> <Type>System.String</Type>