Vulkan Schnee 0.0.1
High-performance rendering engine
Loading...
Searching...
No Matches
EcsErrors.h
Go to the documentation of this file.
1#pragma once
3
4namespace Ecs
5{
7 {
8 public:
10 explicit EntityNullError( const std::string & message ) : Exception( message ) {}
11 explicit EntityNullError( const std::stringstream & message ) : Exception( message ) {}
12 };
13
14 inline EntityNullError::EntityNullError() : Exception( "Entity is null" )
15 {
16 }
17} // namespace Ecs
EntityNullError(const std::stringstream &message)
Definition EcsErrors.h:11
EntityNullError(const std::string &message)
Definition EcsErrors.h:10
Exception(const std::string &message)
Definition Exceptions.h:10
Data structs for the Entity Component System.