System.Rtti.ENonPublicType

From RAD Studio API Documentation
Jump to: navigation, search

System.SysUtils.ExceptionSystem.TObjectENonPublicType

Delphi

ENonPublicType = class(Exception);

C++

class PASCALIMPLEMENTATION ENonPublicType : public System::Sysutils::Exception

Properties

Type Visibility Source Unit Parent
class public
System.Rtti.pas
System.Rtti.hpp
System.Rtti System.Rtti

Description

ENonPublicType is raised when accessing certain information for unpublished types.

RTTI objects in the Rtti unit allow introspection on all defined types, including the ones that are not publicly accessible. These private types, though, do not expose all information, like the public one. ENonPublicType is raised when this unavailable information is accessed for a private type.

See Also