]>
git.saurik.com Git - apple/icu.git/blob - icuSources/common/errorcode.cpp
2 *******************************************************************************
4 * Copyright (C) 2009, 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 UErrorCode
ErrorCode::reset() {
23 UErrorCode code
= errorCode
;
24 errorCode
= U_ZERO_ERROR
;
28 void ErrorCode::assertSuccess() const {
34 const char* ErrorCode::errorName() const {
35 return u_errorName(errorCode
);