This commit is contained in:
Cinder
2019-10-08 20:20:32 -05:00
parent 5ebf8c835b
commit 6edbf29a4c
30 changed files with 51 additions and 78 deletions

View File

@@ -65,7 +65,7 @@ namespace OpenMetaverse.StructuredData
public class OSDException : Exception
{
public OSDException(string message) : base(message) { }
public OSDException() : base() { }
public OSDException() { }
public OSDException(string message, Exception innerException) : base(message, innerException) { }
protected OSDException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { }
}