C# Класс Azavea.Open.Common.LoggingException

This exception logs its message and parent exception (if any) as "debug" log messages, allowing run-time debugging if it is discovered that an exception is being eaten somewhere. Normally an exception will be logged by client code, so there is no need to log a warning everywhere one is generated.
Наследование: System.ApplicationException
Показать файл Открыть проект

Защищенные свойства (Protected)

Свойство Тип Описание
_log log4net.ILog

Открытые методы

Метод Описание
LoggingException ( string message ) : System

Creates the exception.

LoggingException ( string message, Exception e ) : System

Creates the exception, with an inner exception.

Описание методов

LoggingException() публичный Метод

Creates the exception.
public LoggingException ( string message ) : System
message string What went wrong?
Результат System

LoggingException() публичный Метод

Creates the exception, with an inner exception.
public LoggingException ( string message, Exception e ) : System
message string What went wrong?
e System.Exception Another exception that caused this one to be thrown.
Результат System

Описание свойств

_log защищенное свойство

A log4net logger that can be used to log info about the exception.
protected ILog,log4net _log
Результат log4net.ILog