#pragma once
#include "System/SystemException.h"

namespace DotNetDupe {
	namespace System {

		class FormatException : public SystemException {
		public:
			FormatException(const String& sMessage) : SystemException(sMessage) { }
		};

	}
}

Generated by OpenCppCoverage (Version: 0.9.9.0)