C# 클래스 SGDE.Content.Code.Library.Error

The Error class contains information about an error that occurred in a script.
상속: Object
파일 보기 프로젝트 열기: sgdc/sgdc-old

공개 프로퍼티들

프로퍼티 타입 설명
message String
name String

공개 메소드들

메소드 설명
Error ( ) : System

Creates a new Error object.

Error ( String message ) : System

Creates a new Error object.

toString ( ) : String

Returns the string "Error" by default or the value contained in the Error.message property, if defined.

메소드 상세

Error() 공개 메소드

Creates a new Error object.
public Error ( ) : System
리턴 System

Error() 공개 메소드

Creates a new Error object.
public Error ( String message ) : System
message String A string associated with the Error object; this parameter is optional.
리턴 System

toString() 공개 메소드

Returns the string "Error" by default or the value contained in the Error.message property, if defined.
public toString ( ) : String
리턴 String

프로퍼티 상세

message 공개적으로 프로퍼티

Contains the message associated with the Error object.
public String message
리턴 String

name 공개적으로 프로퍼티

Contains the name of the Error object.
public String name
리턴 String