Skip to content

Commit 053b302

Browse files
committed
Chg: LuaParseException ctor public
1 parent 991c32b commit 053b302

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: NeoLua/Exceptions.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public sealed class LuaParseException : LuaException
100100
/// <param name="position"></param>
101101
/// <param name="message"></param>
102102
/// <param name="innerException"></param>
103-
internal LuaParseException(Position position, string message, Exception innerException)
103+
public LuaParseException(Position position, string message, Exception innerException = null)
104104
: base(message, innerException)
105105
{
106106
this.fileName = position.FileName;

0 commit comments

Comments
 (0)