extratorException.cpp 242 Bytes
#include "extratorException.h"

ExtratorException::ExtratorException(const string message) 
	: RuntimeException(message)
 	{ /* TODO */ }
ExtratorException::ExtratorException(const char* message)
	: RuntimeException(message)
	{ /* TODO */ }