Skip to content

Commit 520c23c

Browse files
authored
Merge pull request #26 from myd7349/fix-exception-message
Remove redundant 'internal'
2 parents 51aff24 + fb6feda commit 520c23c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

LSL.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ public static void check_error(int ec)
196196
case -1: throw new TimeoutException("The operation failed due to a timeout.");
197197
case -2: throw new LostException("The stream has been lost.");
198198
case -3: throw new ArgumentException("An argument was incorrectly specified (e.g., wrong format or wrong length).");
199-
case -4: throw new InternalException("An internal internal error has occurred.");
199+
case -4: throw new InternalException("An internal error has occurred.");
200200
default: throw new Exception("An unknown error has occurred.");
201201
}
202202
}

0 commit comments

Comments
 (0)