public TypeNotFoundException(message as String = "Type not found"):
Creates a type-not-found exception.
| Parameter | Description |
|---|---|
message | Human-readable description of the missing type. |
import klyn.reflection
error = TypeNotFoundException("Type not found: missing.Type")
print(error.message)