From: Mikko Rasa Date: Fri, 17 Sep 2021 23:12:48 +0000 (+0300) Subject: Improve exceptions in armature lookups X-Git-Url: http://git.tdb.fi/?a=commitdiff_plain;ds=sidebyside;h=f550197032efd10bd501850763ad2fe9a4bd1e41;p=libs%2Fgl.git Improve exceptions in armature lookups --- diff --git a/source/animation/armature.cpp b/source/animation/armature.cpp index f339ea2a..d8512d82 100644 --- a/source/animation/armature.cpp +++ b/source/animation/armature.cpp @@ -17,7 +17,7 @@ const Armature::Link &Armature::get_link(unsigned index) const for(const Link &l: links) if(l.get_index()==index) return l; - throw key_error(typeid(list)); + throw key_error(index); } const Armature::Link &Armature::get_link(const string &name) const @@ -25,7 +25,7 @@ const Armature::Link &Armature::get_link(const string &name) const for(const Link &l: links) if(l.get_name()==name) return l; - throw key_error(typeid(list)); + throw key_error(name); } unsigned Armature::get_max_link_index() const