diff --git a/internal/platform/exception.h b/internal/platform/exception.h index 0834597159..5a04349b59 100644 --- a/internal/platform/exception.h +++ b/internal/platform/exception.h @@ -33,6 +33,7 @@ struct Exception { kIllegalCharacters = 6, // File name or parent path contained // illegal chars kNoData = 7, // No data available. + kInvalidFile = 8, // File is invalid. }; bool Ok() const { return value == kSuccess; } explicit operator bool() const { return Ok(); }