GoCollections/exceptions/CollectionOperations.go
2021-05-21 16:57:33 +08:00

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)