diff --git a/CS2JLibrary/NetFramework/System/Collections/ArrayList.xml b/CS2JLibrary/NetFramework/System/Collections/ArrayList.xml
index 0db0018..9334d2c 100644
--- a/CS2JLibrary/NetFramework/System/Collections/ArrayList.xml
+++ b/CS2JLibrary/NetFramework/System/Collections/ArrayList.xml
@@ -111,7 +111,7 @@
${this}.toArray(new ${TYPEOF_expr_TYPE}[0])
- System.Object
+ System.Type
TYPEOF_expr
@@ -172,7 +172,7 @@
new ArrayList(${collection})
- System.ICollection
+ System.Collections.ICollection
collection
diff --git a/CS2JLibrary/NetFramework/System/Collections/SortedList.xml b/CS2JLibrary/NetFramework/System/Collections/SortedList.xml
index 640a2f6..07a25ac 100644
--- a/CS2JLibrary/NetFramework/System/Collections/SortedList.xml
+++ b/CS2JLibrary/NetFramework/System/Collections/SortedList.xml
@@ -74,7 +74,7 @@
${this}.values()
- System.ICollection
+ System.Collections.ICollection
Values
${this}.values()
${this}.setValues(${value})
diff --git a/CS2JLibrary/src/RusticiSoftware/System/Xml/Serialization/IXmlSerializable.java b/CS2JLibrary/src/RusticiSoftware/System/Xml/Serialization/IXmlSerializable.java
index dbf9d28..e474c9a 100755
--- a/CS2JLibrary/src/RusticiSoftware/System/Xml/Serialization/IXmlSerializable.java
+++ b/CS2JLibrary/src/RusticiSoftware/System/Xml/Serialization/IXmlSerializable.java
@@ -25,10 +25,10 @@ import RusticiSoftware.System.Xml.XmlWriter;
public interface IXmlSerializable {
- public Object GetSchema() throws Exception;
+ public Object GetSchema() throws Throwable;
- public void ReadXml(XmlReader reader) throws Exception;
+ public void ReadXml(XmlReader reader) throws Throwable;
- public void WriteXml(XmlWriter writer) throws Exception;
+ public void WriteXml(XmlWriter writer) throws Throwable;
}