mirror of
https://github.com/tursom/GoCollections.git
synced 2026-09-03 22:02:51 +08:00
6 lines
378 B
Go
6 lines
378 B
Go
package exceptions
|
|
|
|
var ElementFound = NewRuntimeException("", "element found", DefaultExceptionConfig().SetGetStackTrace(false))
|
|
var ElementNotFound = NewRuntimeException("", "element not found", DefaultExceptionConfig().SetGetStackTrace(false))
|
|
var CollectionLoopFinished = NewRuntimeException("", "collection loop finished", DefaultExceptionConfig().SetGetStackTrace(false))
|