Exception
class IllegalSetException
public class IllegalSetException <: ReflectException {
public init()
public init(message: String)
}
Description: Specifies an exception thrown upon an attempt to modify an immutable type.
Parent Type:
init()
public init()
Description: Creates an IllegalSetException instance.
init(String)
public init(message: String)
Description: Creates an IllegalSetException instance based on the exception information.
Parameters:
- message: String: exception information
class IllegalTypeException
public class IllegalTypeException <: ReflectException {
public init()
public init(message: String)
}
Description: Indicates a type mismatch exception.
Parent Type:
init()
public init()
Description: Creates an IllegalTypeException instance.
init(String)
public init(message: String)
Description: Creates an IllegalTypeException instance based on the exception information.
Parameters:
- message: String: exception information
class InfoNotFoundException
public class InfoNotFoundException <: ReflectException {
public init()
public init(message: String)
}
Description: Indicates that the corresponding information cannot be found.
Parent Type:
init()
public init()
Description: Creates an InfoNotFoundException instance.
init(String)
public init(message: String)
Description: Creates an InfoNotFoundException instance based on the exception information.
Parameters:
- message: String: exception information
class InvocationTargetException
public class InvocationTargetException <: ReflectException {
public init()
public init(message: String)
}
Description: Indicates an exception that wraps a function invocation exception.
Parent Type:
init()
public init()
Description: Creates an InvocationTargetException instance.
init(String)
public init(message: String)
Description: Creates an InvocationTargetException instance based on the exception information.
Parameters:
- message: String: exception information
class MisMatchException
public class MisMatchException <: ReflectException {
public init()
public init(message: String)
}
Description: Indicates that an exception thrown when the corresponding function is called incorrectly.
Parent Type:
init()
public init()
Description: Creates a MisMatchException instance.
init(String)
public init(message: String)
Description: Creates a MisMatchException instance based on the exception information.
Parameters:
- message: String: exception information
class ReflectException
public open class ReflectException <: Exception {
public init()
public init(message: String)
}
Description: Specifies the base exception class for the Reflect package.
Parent Type:
init()
public init()
Description: Creates a ReflectException instance.
init(String)
public init(message: String)
Description: Creates a ReflectException instance based on the exception information.
Parameters:
- message: String: exception information