exceptions.h 334 Bytes
Newer Older
beder's avatar
beder committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include <exception>

namespace YAML
{
	class Exception: public std::exception {};

	class UnknownToken: public Exception {};
	class IllegalBlockEntry: public Exception {};
	class IllegalMapKey: public Exception {};
	class IllegalMapValue: public Exception {};
	class IllegalScalar: public Exception {};
}