mirror of
https://github.com/opensim/opensim.git
synced 2026-05-14 18:55:39 +08:00
Also add the additional ScriptException constructor necessary to get [Serializable] to work.
This commit is contained in:
@@ -26,6 +26,7 @@
|
||||
*/
|
||||
|
||||
using System;
|
||||
using System.Runtime.Serialization;
|
||||
|
||||
namespace OpenSim.Region.ScriptEngine.Shared
|
||||
{
|
||||
@@ -37,5 +38,7 @@ namespace OpenSim.Region.ScriptEngine.Shared
|
||||
public ScriptException(string message) : base(message) {}
|
||||
|
||||
public ScriptException(string message, Exception innerException) : base(message, innerException) {}
|
||||
|
||||
public ScriptException(SerializationInfo info, StreamingContext context) :base(info, context) {}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user