]>
git.saurik.com Git - apple/icu.git/blob - icuSources/common/errorcode.cpp
2 *******************************************************************************
4 * Copyright (C) 2009-2011, International Business Machines
5 * Corporation and others. All Rights Reserved.
7 *******************************************************************************
8 * file name: errorcode.cpp
10 * tab size: 8 (not used)
13 * created on: 2009mar10
14 * created by: Markus W. Scherer
17 #include "unicode/utypes.h"
18 #include "unicode/errorcode.h"
22 ErrorCode::~ErrorCode() {}
24 UErrorCode
ErrorCode::reset() {
25 UErrorCode code
= errorCode
;
26 errorCode
= U_ZERO_ERROR
;
30 void ErrorCode::assertSuccess() const {
36 const char* ErrorCode::errorName() const {
37 return u_errorName(errorCode
);