summaryrefslogtreecommitdiff
path: root/common/accel-error.hpp
blob: fa1f999ec15db7fef77fd1ab1ca9b949e1e7038f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include <stdexcept>

namespace rawaccel {

	void error(const char* s) { 
		throw std::domain_error(s); 
	}

}