Added new exception.

这个提交包含在:
Craig Warren
2016-02-11 19:40:25 +00:00
父节点 16b57b45dd
当前提交 45123401c4

查看文件

@@ -16,6 +16,10 @@
# You should have received a copy of the GNU General Public License
# along with gprMax. If not, see <http://www.gnu.org/licenses/>.
class GeneralError(ValueError):
"""Handles general errors. Subclasses the ValueError class."""
pass
class CmdInputError(ValueError):
"""Handles errors in user specified commands. Subclasses the ValueError class."""
pass