mirror of
https://github.com/tursom/GoCollections.git
synced 2026-09-02 05:07:54 +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))
|