17 lines
263 B
C#
17 lines
263 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace Common
|
|||
|
|
{
|
|||
|
|
public class CustomError
|
|||
|
|
{
|
|||
|
|
public string Error { get; }
|
|||
|
|
|
|||
|
|
public CustomError(string message)
|
|||
|
|
{
|
|||
|
|
Error = message;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|