Class RepositoryError
Represents a repository error message.
Inherited Members
Namespace: Algenta.Colectica.Model.Repository
Assembly: Algenta.Colectica.Model.dll
Syntax
[Serializable]
[DataContract(Namespace = "http://ns.colectica.com/2009/07/")]
public class RepositoryError
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 |
---|---|---|
String | errorCode | The error code. |
String | message | The error message. |
Properties
ErrorCode
Gets or sets the error code.
Declaration
[DataMember]
public string ErrorCode { get; set; }
Property Value
Type | Description |
---|---|
String |
Message
Gets or sets the error message.
Declaration
[DataMember]
public string Message { get; set; }
Property Value
Type | Description |
---|---|
String |