mirror of
https://github.com/tursom/GoCollections.git
synced 2025-03-13 17:00:18 +08:00
12 lines
304 B
Go
12 lines
304 B
Go
package exceptions
|
|
|
|
type WrongCallHostException struct {
|
|
RuntimeException
|
|
}
|
|
|
|
func NewWrongCallHostException(message string) WrongCallHostException {
|
|
return WrongCallHostException{
|
|
NewRuntimeException(message, DefaultExceptionConfig().AddSkipStack(1).SetExceptionName("WrongCallHostException")),
|
|
}
|
|
}
|