diff --git a/include/serial/serial.h b/include/serial/serial.h index bf664c9..2a915d9 100644 --- a/include/serial/serial.h +++ b/include/serial/serial.h @@ -668,7 +668,7 @@ public: e_what_ = ss.str(); } virtual ~IOException() throw() {} - IOException (const IOException& other) : e_what_(other.e_what_), line_(other.line_), errno_(other.errno_) {} + IOException (const IOException& other) : line_(other.line_), e_what_(other.e_what_), errno_(other.errno_) {} int getErrorNumber () { return errno_; }