diff options
author | eb <eb@221aa14e-8319-0410-a670-987f0aec2ac5> | 2007-01-13 06:39:33 +0000 |
---|---|---|
committer | eb <eb@221aa14e-8319-0410-a670-987f0aec2ac5> | 2007-01-13 06:39:33 +0000 |
commit | 29c73e79ef50525b56d8e9f89808baace75fae82 (patch) | |
tree | a7e535126b041d6479e1afa5ff0740cfd9384218 /mblock/src/lib/mb_exception.cc | |
parent | 77a328cd9cc198de890787e000985baf976af32a (diff) |
Merged latest pmt and mblock into trunk (eb/wip -r4262:4268)
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@4269 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'mblock/src/lib/mb_exception.cc')
-rw-r--r-- | mblock/src/lib/mb_exception.cc | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/mblock/src/lib/mb_exception.cc b/mblock/src/lib/mb_exception.cc new file mode 100644 index 0000000000..4282f6dd07 --- /dev/null +++ b/mblock/src/lib/mb_exception.cc @@ -0,0 +1,82 @@ +/* -*- c++ -*- */ +/* + * Copyright 2006 Free Software Foundation, Inc. + * + * This file is part of GNU Radio + * + * GNU Radio is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2, or (at your option) + * any later version. + * + * GNU Radio is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + +#include <mb_exception.h> +#include <mb_mblock.h> +#include <mb_util.h> + + +mbe_base::mbe_base(mb_mblock *mb, const std::string &msg) + : logic_error(msg) // FIXME extract block class name and id and add to msg +{ +} + +mbe_no_such_component::mbe_no_such_component(mb_mblock *mb, const std::string &component_name) + : mbe_base(mb, "No such component: " + component_name) +{ +} + + +mbe_duplicate_component::mbe_duplicate_component(mb_mblock *mb, const std::string &component_name) + : mbe_base(mb, "Duplicate component: " + component_name) +{ +} + +mbe_no_such_port::mbe_no_such_port(mb_mblock *mb, const std::string &port_name) + : mbe_base(mb, "No such port: " + port_name) +{ +} + +mbe_duplicate_port::mbe_duplicate_port(mb_mblock *mb, const std::string &port_name) + : mbe_base(mb, "Duplicate port: " + port_name) +{ +} + +mbe_already_connected::mbe_already_connected(mb_mblock *mb, + const std::string &comp_name, + const std::string &port_name) + : mbe_base(mb, "Port already connected: " + mb_util::join_names(comp_name, port_name)) +{ +} + + + +mbe_incompatible_ports::mbe_incompatible_ports(mb_mblock *mb, + const std::string &comp1_name, + const std::string &port1_name, + const std::string &comp2_name, + const std::string &port2_name) + : mbe_base(mb, "Incompatible ports: " + + mb_util::join_names(comp1_name, port1_name) + " " + + mb_util::join_names(comp2_name, port2_name)) +{ +} + +mbe_invalid_port_type::mbe_invalid_port_type(mb_mblock *mb, + const std::string &comp_name, + const std::string &port_name) + : mbe_base(mb, "Invalid port type for connection: " + mb_util::join_names(comp_name, port_name)) +{ +} |