C# 클래스 CSJ2K.j2k.JJ2KExceptionHandler

This class handles exceptions. It should be used in places where it is not known how to handle the exception, and the exception can not be thrown higher in the stack.

Different options can be registered for each Thread and ThreadGroup. This feature is not implemented yet

파일 보기 프로젝트 열기: cureos/csj2k

공개 메소드들

메소드 설명
handleException ( System e ) : void

Handles the exception. If no special action is registered for the current thread, then the Exception's stack trace and a descriptive message are printed to standard error and the current thread is stopped.

Registration of special actions is not implemented yet.

메소드 상세

handleException() 공개 정적인 메소드

Handles the exception. If no special action is registered for the current thread, then the Exception's stack trace and a descriptive message are printed to standard error and the current thread is stopped.

Registration of special actions is not implemented yet.

public static handleException ( System e ) : void
e System The exception to handle /// /// /// ///
리턴 void