-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: added builtin radiation errors.
- Loading branch information
Showing
2 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -16,6 +16,7 @@ | |
"array", | ||
"colorlib", | ||
"math", | ||
"radiation", | ||
"system", | ||
"string", | ||
"universe", # ester egg | ||
|
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
fun ValueError(message = null) -> message | ||
fun TypeError(message = null) -> message | ||
fun IOError(message = null) -> message | ||
fun MemoryError(message = null) -> message | ||
fun KeyError(message = null) -> message | ||
fun IndexError(message = null) -> message | ||
fun NotImplementedError(message = null) -> message | ||
fun AssertionError(message = null) -> message | ||
fun SyntaxError(message = null) -> message | ||
fun KeyboardInterrupt(message = null) -> message | ||
fun StopIteration(message = null) -> message | ||
fun DeprecationWarning(message = null) -> message | ||
fun ReferenceError(message = null) -> message | ||
fun BufferError(message = null) -> message | ||
fun ArithmeticError(message = null) -> message | ||
fun LogicalError(message = null) -> message | ||
fun RuntimeError(message = null) -> message |