klyn.reflection.TypeNotFoundException.TypeNotFoundException
constructor
public TypeNotFoundException(message as String = "Type not found"):
Description

Creates a type-not-found exception.

Parameters
  • message Human-readable description of the missing type. ```klyn import klyn.reflection error = TypeNotFoundException("Type not found: missing.Type") print(error.message) ```