GoCollections/exceptions/WrongCallHostException.go
2022-03-31 01:22:30 +08:00

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")),
}
}