forked from efrederickson/SharpLua
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
9,241 additions
and
9,241 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,31 @@ | ||
using System; | ||
using System.Runtime.Serialization; | ||
|
||
namespace SharpLua | ||
{ | ||
/// <summary> | ||
/// Exceptions thrown by the Lua runtime | ||
/// </summary> | ||
[Serializable] | ||
public class LuaException : Exception | ||
{ | ||
public LuaException() | ||
{ } | ||
|
||
public LuaException(string message) | ||
: base(message) | ||
{ } | ||
|
||
public LuaException(string message, Exception innerException) | ||
: base(message, innerException) | ||
{ } | ||
|
||
using System; | ||
using System.Runtime.Serialization; | ||
|
||
namespace SharpLua | ||
{ | ||
/// <summary> | ||
/// Exceptions thrown by the Lua runtime | ||
/// </summary> | ||
[Serializable] | ||
public class LuaException : Exception | ||
{ | ||
public LuaException() | ||
{ } | ||
|
||
public LuaException(string message) | ||
: base(message) | ||
{ } | ||
|
||
public LuaException(string message, Exception innerException) | ||
: base(message, innerException) | ||
{ } | ||
|
||
#if WindowsCE | ||
public virtual string Source { get { return null; } } | ||
#else | ||
protected LuaException(SerializationInfo info, StreamingContext context) | ||
: base(info, context) | ||
{ } | ||
#endif | ||
} | ||
} | ||
public virtual string Source { get { return null; } } | ||
#else | ||
protected LuaException(SerializationInfo info, StreamingContext context) | ||
: base(info, context) | ||
{ } | ||
#endif | ||
} | ||
} |
Oops, something went wrong.