Class RepositoryError
Represents a repository error message.
Inheritance
System.Object
RepositoryError
Namespace: Algenta.Colectica.Model.Repository
Assembly: Algenta.Colectica.Model.dll
Syntax
public class RepositoryError : object
Constructors
RepositoryError()
Initializes a new instance of the RepositoryError class.
Declaration
public RepositoryError()
RepositoryError(String, String)
Initializes a new instance of the RepositoryError class.
Declaration
public RepositoryError(string errorCode, string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | errorCode | The error code. |
System.String | message | The error message. |
Properties
ErrorCode
Gets or sets the error code.
Declaration
public string ErrorCode { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Message
Gets or sets the error message.
Declaration
public string Message { get; set; }
Property Value
Type | Description |
---|---|
System.String |