diff options
Merge branch 'master' into careminster
Conflicts:
OpenSim/Region/CoreModules/Avatar/Chat/ChatModule.cs
OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs
OpenSim/Region/Framework/Scenes/Scene.PacketHandlers.cs
OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs
OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs
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 de49d6d..8d8df1d 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -11578,12 +11578,12 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
11578 | 11578 | ||
11579 | internal void Deprecated(string command) | 11579 | internal void Deprecated(string command) |
11580 | { | 11580 | { |
11581 | throw new Exception("Command deprecated: " + command); | 11581 | throw new ScriptException("Command deprecated: " + command); |
11582 | } | 11582 | } |
11583 | 11583 | ||
11584 | internal void LSLError(string msg) | 11584 | internal void LSLError(string msg) |
11585 | { | 11585 | { |
11586 | throw new Exception("LSL Runtime Error: " + msg); | 11586 | throw new ScriptException("LSL Runtime Error: " + msg); |
11587 | } | 11587 | } |
11588 | 11588 | ||
11589 | public delegate void AssetRequestCallback(UUID assetID, AssetBase asset); | 11589 | public delegate void AssetRequestCallback(UUID assetID, AssetBase asset); |