C# Class ZocBuild.Database.Errors.MismatchedObjectNameError

Represents an error caused by the name of the programmable object not matching its file name.
Inheritance: BuildErrorBase
Exibir arquivo Open project: Zocdoc/ZocBuild.Database Class Usage Examples

Public Methods

Method Description
GetMessage ( ) : string

Returns the message for this error.

MismatchedObjectNameError ( string expected, string actual ) : System

Creates an instance of a mismatched object name error object.

Method Details

GetMessage() public method

Returns the message for this error.
public GetMessage ( ) : string
return string

MismatchedObjectNameError() public method

Creates an instance of a mismatched object name error object.
public MismatchedObjectNameError ( string expected, string actual ) : System
expected string The file name of the script.
actual string The parsed name of the object.
return System