X-Git-Url: http://developer.intra2net.com/git/?p=libt2n;a=blobdiff_plain;f=src%2Ft2n_exception.hxx;h=4ce11aa2e209f7eb8c657a13f4e322eebef2d23c;hp=a494c8612af742e83ffbb15bf32427f9c284f3b7;hb=04d86ba4ad4f14ab08f38804e772ec46a8ac92b0;hpb=8104c8f70605ee24230e5988d7bf68e3fce7465a diff --git a/src/t2n_exception.hxx b/src/t2n_exception.hxx index a494c86..4ce11aa 100644 --- a/src/t2n_exception.hxx +++ b/src/t2n_exception.hxx @@ -206,29 +206,6 @@ class t2n_command_error : public t2n_exception { throw *this; } }; -/// illegal libt2n option set -class t2n_parameter_error : public t2n_exception -{ - private: - friend class boost::serialization::access; - template - void serialize(Archive & ar, const unsigned int version); - - public: - t2n_parameter_error(const std::string& _message) - : t2n_exception(_message) - { } - - t2n_parameter_error() - { } - - t2n_exception* clone() const - { return new t2n_parameter_error(*this); } - - void do_throw() - { throw *this; } -}; - /// error serializing or deserializing a libt2n command packet class t2n_serialization_error : public t2n_exception {