23 lines
473 B
C++
23 lines
473 B
C++
/***
|
|
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: EStreamError.hpp
|
|
Date: 2021-6-10
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
namespace Aurora::IO
|
|
{
|
|
AUE_DEFINE_VA(EStreamError,
|
|
eErrorNone,
|
|
eErrorEndOfStream,
|
|
eErrorStreamNotOpen,
|
|
eErrorStreamInterrupted,
|
|
eErrorHandleClosed,
|
|
eErrorOutOfMemory,
|
|
eErrorByteBuffer,
|
|
eErrorGenericFault,
|
|
eErrorOutOfBounds
|
|
);
|
|
} |