Photon Engine 2.0.0-beta
A physically based renderer.
Loading...
Searching...
No Matches
exceptions.h
Go to the documentation of this file.
1#pragma once
2
3#include <Common/exceptions.h>
4
5#include <string>
6
7namespace ph
8{
9
12class CookException : public RuntimeException
13{
14public:
15 using RuntimeException::RuntimeException;
16};
17
21{
22public:
23 using CookException::CookException;
24};
25
26}// end namespace ph
General exception thrown on cook error for actors.
Definition exceptions.h:21
General exception thrown on cook error.
Definition exceptions.h:13
The root for all renderer implementations.
Definition EEngineProject.h:6