DCL 3.7.4
Loading...
Searching...
No Matches
Regex.cpp File Reference
#include <dcl/Config.h>
#include <string.h>
#include <exception>
#include <dcl/Regex.h>
#include <dcl/Charset.h>
#include <dcl/Array.h>

Go to the source code of this file.

Functions

__DCL_BEGIN_NAMESPACE IMPLEMENT_CLASSINFO (RegexException, Exception) RegexException

Function Documentation

◆ IMPLEMENT_CLASSINFO()

__DCL_BEGIN_NAMESPACE IMPLEMENT_CLASSINFO ( RegexException ,
Exception  )

Definition at line 22 of file Regex.cpp.

26{
27 StringBuilder sb;
28 sb.append(AsciiDecoder::decode(_name))
29 .append(__T(":"))
30 .append(AsciiDecoder::decode(_what));
31 __message = sb.toString();
32}
#define NULL
Definition Config.h:312
#define __T(str)
Definition Object.h:60
static String decode(const char *_mbs, size_t _mbslen=(size_t) -1)
virtual String toString() const
Definition Exception.cpp:40