40 #ifndef PCL_IO_EXCEPTION
41 #define PCL_IO_EXCEPTION
48 #define THROW_PCL_IO_EXCEPTION(format,...) throwPCLIOException( __PRETTY_FUNCTION__, __FILE__, __LINE__, format , ##__VA_ARGS__ )
65 const std::string& file_name =
"",
66 const std::string& function_name =
"",
67 unsigned line_number = 0)
68 :
PCLException (error_description, file_name, function_name, line_number)
86 va_start (args, format);
87 vsprintf (msg, format, args);