using System; using System.Collections.Generic; using System.Text; namespace Common { public class CustomError { public string Error { get; } public CustomError(string message) { Error = message; } } }