mirror of
https://github.com/tursom/GoCollections.git
synced 2025-02-26 20:20:31 +08:00
26 lines
634 B
Go
26 lines
634 B
Go
package exceptions
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/tursom/GoCollections/lang"
|
|
"reflect"
|
|
)
|
|
|
|
type TypeCastException struct {
|
|
RuntimeException
|
|
}
|
|
|
|
func NewTypeCastException(message string, config *ExceptionConfig) *TypeCastException {
|
|
return &TypeCastException{
|
|
NewRuntimeException(message, config.AddSkipStack(1).
|
|
SetExceptionName("github.com.tursom.GoCollections.exceptions.TypeCastException")),
|
|
}
|
|
}
|
|
|
|
func NewTypeCastExceptionByType[T any](obj any, config *ExceptionConfig) *TypeCastException {
|
|
return NewTypeCastException(
|
|
fmt.Sprintf("object %s cannot cast to %s", obj, reflect.TypeOf(lang.Nil[T]()).Name()),
|
|
config,
|
|
)
|
|
}
|