mirror of
https://github.com/tursom/GoCollections.git
synced 2026-08-31 03:57:51 +08:00
6 lines
424 B
Go
6 lines
424 B
Go
package exceptions
|
|
|
|
var ElementFound = NewRuntimeException("", DefaultExceptionConfig().SetGetStackTrace(false).SetExceptionName("ElementFound"))
|
|
var ElementNotFound = NewRuntimeException("", DefaultExceptionConfig().SetGetStackTrace(false).SetExceptionName("ElementNotFound"))
|
|
var CollectionLoopFinished = NewRuntimeException("", DefaultExceptionConfig().SetGetStackTrace(false).SetExceptionName("CollectionLoopFinished"))
|