mirror of
https://github.com/tursom/GoCollections.git
synced 2025-04-01 01:40:08 +08:00
6 lines
264 B
Go
6 lines
264 B
Go
package exceptions
|
|
|
|
var ElementFound = NewRuntimeException("", "element found", false, nil)
|
|
var ElementNotFound = NewRuntimeException("", "element not found", false, nil)
|
|
var CollectionLoopFinished = NewRuntimeException("", "collection loop finished", false, nil)
|