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
파일 보기 프로젝트 열기: azavea/net-om-utils-common

보호된 프로퍼티들

프로퍼티 타입 설명
_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