Skip to content

Commit

Permalink
Added alias for ArithmeticError in preload doit script
Browse files Browse the repository at this point in the history
  • Loading branch information
ytsejam78 committed Aug 8, 2023
1 parent 6f54a62 commit 2189ee1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rowan/components/scripts/defineExceptionAliases.st
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
| symbolDictionary |
symbolDictionary := Rowan image
symbolDictNamed:'Buoy'
symbolDictNamed: 'Buoy'
ifAbsent: [
Rowan image symbolList createDictionaryNamed: 'Buoy' at: 1.
Rowan image symbolDictNamed:'Buoy'
Rowan image symbolDictNamed: 'Buoy'
].
symbolDictionary at: #SubscriptOutOfBounds put: OffsetError.
symbolDictionary at: #NotFound put: LookupError.

symbolDictionary at: #ArithmeticError put: NumericError.

0 comments on commit 2189ee1

Please sign in to comment.