Iex.h 701 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // SPDX-License-Identifier: BSD-3-Clause
  3. // Copyright (c) Contributors to the OpenEXR Project.
  4. //
  5. #ifndef INCLUDED_IEX_H
  6. #define INCLUDED_IEX_H
  7. //--------------------------------
  8. //
  9. // Exception handling
  10. //
  11. //--------------------------------
  12. #include "IexMacros.h"
  13. #include "IexBaseExc.h"
  14. #include "IexMathExc.h"
  15. #include "IexThrowErrnoExc.h"
  16. // Note that we do not include file IexErrnoExc.h here. That file
  17. // defines over 150 classes and significantly slows down compilation.
  18. // If you throw ErrnoExc exceptions using the throwErrnoExc() function,
  19. // you don't need IexErrnoExc.h. You have to include IexErrnoExc.h
  20. // only if you want to catch specific subclasses of ErrnoExc.
  21. #endif