1 //===- BinaryStreamError.h - Error extensions for Binary Streams *- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_SUPPORT_BINARYSTREAMERROR_H
10 #define LLVM_SUPPORT_BINARYSTREAMERROR_H
12 #include "llvm/ADT/StringRef.h"
13 #include "llvm/Support/Error.h"
18 enum class stream_error_code
{
26 /// Base class for errors originating when parsing raw PDB files
27 class BinaryStreamError
: public ErrorInfo
<BinaryStreamError
> {
30 explicit BinaryStreamError(stream_error_code C
);
31 explicit BinaryStreamError(StringRef Context
);
32 BinaryStreamError(stream_error_code C
, StringRef Context
);
34 void log(raw_ostream
&OS
) const override
;
35 std::error_code
convertToErrorCode() const override
;
37 StringRef
getErrorMessage() const;
39 stream_error_code
getErrorCode() const { return Code
; }
43 stream_error_code Code
;
47 #endif // LLVM_SUPPORT_BINARYSTREAMERROR_H