zig/src/error.hpp

48 lines
927 B
C++
Raw Normal View History

2015-11-05 15:05:25 +08:00
/*
* Copyright (c) 2015 Andrew Kelley
*
* This file is part of zig, which is MIT licensed.
* See http://opensource.org/licenses/MIT
*/
#ifndef ERROR_HPP
#define ERROR_HPP
#include <assert.h>
2015-11-05 15:05:25 +08:00
enum Error {
ErrorNone,
2015-11-05 15:05:25 +08:00
ErrorNoMem,
ErrorInvalidFormat,
ErrorSemanticAnalyzeFail,
2015-12-01 17:29:21 +08:00
ErrorAccess,
ErrorInterrupted,
ErrorSystemResources,
ErrorFileNotFound,
ErrorFileSystem,
ErrorFileTooBig,
ErrorDivByZero,
ErrorOverflow,
ErrorPathAlreadyExists,
ErrorUnexpected,
ErrorExactDivRemainder,
ErrorNegativeDenominator,
ErrorShiftedOutOneBits,
ErrorCCompileErrors,
2018-09-10 06:07:11 +08:00
ErrorEndOfFile,
ErrorIsDir,
ErrorUnsupportedOperatingSystem,
2018-09-12 23:33:26 +08:00
ErrorSharingViolation,
ErrorPipeBusy,
ErrorPrimitiveTypeNotFound,
ErrorCacheUnavailable,
2015-11-05 15:05:25 +08:00
};
const char *err_str(Error err);
static inline void assertNoError(Error err) {
assert(err == ErrorNone);
}
2015-11-05 15:05:25 +08:00
#endif