public ArchitectureLayerException(ArchitectureLayerIdentifier layerId, Exception exception)
            : base(exception.Message, exception.InnerException)
        {
            _layerId = layerId;

            MakeInformation();
        }
 public ArchitectureLayerException(ArchitectureLayerIdentifier layerId, string message,
                                   Exception innerException)
     : this(layerId, new Exception(message, innerException))
 {
 }