implement unhandled_switch_case exception

This commit is contained in:
Thomas Fussell 2017-03-20 19:20:48 -04:00
parent e0e38a931c
commit e617d140f0
2 changed files with 10 additions and 0 deletions

View File

@ -319,6 +319,11 @@ public:
/// </summary>
unhandled_switch_case();
/// <summary>
///
/// </summary>
unhandled_switch_case(const unhandled_switch_case &) = default;
/// <summary>
///
/// </summary>

View File

@ -45,6 +45,11 @@ missing_number_format::~missing_number_format()
{
}
unhandled_switch_case::unhandled_switch_case()
: xlnt::exception("unhandled switch case")
{
}
unhandled_switch_case::~unhandled_switch_case()
{
}