C# Класс W3c.Ddr.Exceptions.SystemException

This exception, a subclass of System.Exception, Is thrown by DDR Simple API implementations when they encounter unrecoverable errors.
Наследование: System.Exception
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
CANNOT_PROCEED int
ILLEGAL_ARGUMENT int

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

Метод Описание
GetMessage ( ) : String
SystemException ( ) : System
SystemException ( int code, Exception ex ) : System
SystemException ( int code, String message ) : System

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

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

public GetMessage ( ) : String
Результат String

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

public SystemException ( ) : System
Результат System

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

public SystemException ( int code, Exception ex ) : System
code int
ex System.Exception
Результат System

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

public SystemException ( int code, String message ) : System
code int
message String
Результат System

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

CANNOT_PROCEED публичное статическое свойство

The implementation cannot continue with the processing of the current request due to an unexpected failure - disconnection from a database, for example.
public static int CANNOT_PROCEED
Результат int

ILLEGAL_ARGUMENT публичное статическое свойство

A method has been passed an illegal or inappropriate argument - a null argument where it is not allowed, for example.
public static int ILLEGAL_ARGUMENT
Результат int