Delphi-Quellcode:
//This error is for POP3 Protocol reply exceptions
// SendCmd / GetResponse
EIdReplyPOP3Error =
class(EIdReplyError)
protected
FErrorCode :
String;
FEnhancedCode :
String;
public
constructor CreateError(
const AErrorCode:
String;
const AReplyMessage:
string;
const AEnhancedCode :
String = '
');
reintroduce;
virtual;
property ErrorCode :
String read FErrorCode;
property EnhancedCode :
String read FEnhancedCode;
end;
Hast du es mal mit den Properties ErrorCode und EnhancedCode versucht?