xlnt/source/utils/exceptions.cpp

42 lines
669 B
C++
Raw Normal View History

#include <xlnt/utils/exceptions.hpp>
2014-05-22 05:48:51 +08:00
namespace xlnt {
sheet_title_exception::sheet_title_exception(const string &title)
2014-05-22 05:48:51 +08:00
{
}
column_string_index_exception::column_string_index_exception()
2014-06-06 05:42:15 +08:00
{
}
data_type_exception::data_type_exception()
2014-06-06 05:42:15 +08:00
{
}
attribute_error::attribute_error()
{
}
2014-07-24 04:00:09 +08:00
named_range_exception::named_range_exception()
{
}
invalid_file_exception::invalid_file_exception(const string &filename)
2014-07-20 04:59:05 +08:00
{
}
cell_coordinates_exception::cell_coordinates_exception(column_t column, row_t row)
2014-05-22 05:48:51 +08:00
{
}
cell_coordinates_exception::cell_coordinates_exception(const string &coord_string)
2014-05-22 05:48:51 +08:00
{
}
illegal_character_error::illegal_character_error(char c)
{
2014-05-22 05:48:51 +08:00
}
} // namespace xlnt