Exemplo n.º 1
0
 public CenturyError(TipoError codigo, string mensaje, string destino, IEnumerable <CenturyError> detalles = null, CenturyError innerError = null)
 {
     Codigo     = codigo;
     Mensaje    = mensaje;
     Destino    = destino;
     Detalles   = detalles;
     InnerError = innerError;
 }
Exemplo n.º 2
0
 public CenturyException(CenturyError centuryError, Exception innerException)
     : base(centuryError.Mensaje, innerException)
 {
     CenturyError = centuryError;
 }
Exemplo n.º 3
0
 public CenturyException(CenturyError centuryError) : base(centuryError.Mensaje)
 {
     CenturyError = centuryError;
 }