mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
implement unhandled_switch_case exception
This commit is contained in:
parent
e0e38a931c
commit
e617d140f0
|
@ -319,6 +319,11 @@ public:
|
|||
/// </summary>
|
||||
unhandled_switch_case();
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
unhandled_switch_case(const unhandled_switch_case &) = default;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
|
|
|
@ -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()
|
||||
{
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user