Removing throw statements from header files (thanks Peter)

This commit is contained in:
Jonathan Thomas
2017-10-26 18:44:35 -05:00
parent f0f1b92777
commit 2fcb35ddcc
66 changed files with 215 additions and 219 deletions

View File

@@ -83,7 +83,7 @@ Json::Value EffectBase::JsonValue() {
}
// Load JSON string into this object
void EffectBase::SetJson(string value) throw(InvalidJSON) {
void EffectBase::SetJson(string value) {
// Parse JSON string into JSON objects
Json::Value root;
@@ -130,4 +130,4 @@ Json::Value EffectBase::JsonInfo() {
// return JsonValue
return root;
}
}