diff options
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index cf801ba..dc791d3 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -10685,12 +10685,12 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
10685 | 10685 | ||
10686 | internal void Deprecated(string command) | 10686 | internal void Deprecated(string command) |
10687 | { | 10687 | { |
10688 | throw new Exception("Command deprecated: " + command); | 10688 | throw new ScriptException("Command deprecated: " + command); |
10689 | } | 10689 | } |
10690 | 10690 | ||
10691 | internal void LSLError(string msg) | 10691 | internal void LSLError(string msg) |
10692 | { | 10692 | { |
10693 | throw new Exception("LSL Runtime Error: " + msg); | 10693 | throw new ScriptException("LSL Runtime Error: " + msg); |
10694 | } | 10694 | } |
10695 | 10695 | ||
10696 | public delegate void AssetRequestCallback(UUID assetID, AssetBase asset); | 10696 | public delegate void AssetRequestCallback(UUID assetID, AssetBase asset); |