/* * Copyright (c) 2001, DecisionSoft Limited All rights reserved. * Please see LICENSE.TXT for more information. */ /* VariableStoreException - exception class for fucntions */ #ifndef _VARSTOREEXCEPTION_HPP #define _VARSTOREEXCEPTION_HPP #include #include #include /** exception class for tests. Inherit from this if you need to throw an exception in the test suite.*/ class PATHAN_EXPORT VariableStoreException : public DSLException { public: VariableStoreException(const XMLCh *functionName, const XMLCh *reason, const char *file, int line) : DSLException(X("VariableStoreException"), functionName, reason, file, line) {}; }; #endif // _VARSTOREEXCEPTION_HPP