#include <Exception.h>
Definition at line 121 of file Exception.h.
◆ ParseException() [1/2]
| ParseException::ParseException |
( |
const String & | _message | ) |
|
◆ ParseException() [2/2]
| ParseException::ParseException |
( |
const String & | _message, |
|
|
size_t | _sourceOffset ) |
Definition at line 226 of file Exception.cpp.
228{
229 __message = _message;
230 __sourceOffset = _sourceOffset;
231}
Exception(Exception *_cause=NULL)
◆ toString()
| String ParseException::toString |
( |
| ) |
const |
|
virtual |
Reimplemented from Exception.
Definition at line 233 of file Exception.cpp.
234{
235 StringBuilder sb = __message;
236 if (__sourceOffset >= 0) {
237 sb += L": offset:";
238#if __WORDSIZE == 64
240#else
242#endif
243 }
244 return sb;
245}
String toString(unsigned _base=10) const
String toString(unsigned _base=10) const
The documentation for this class was generated from the following files: