Files
weewx/bin/weeplot/__init__.py
Tom Keffer 91e9864a98 Went through all the Python code, deleting all SVN $Id$ tags.
Standardized copyright notices, except for those I don't own.
2015-02-21 09:44:19 -08:00

15 lines
371 B
Python

#
# Copyright (c) 2009-2015 Tom Keffer <tkeffer@gmail.com>
#
# See the file LICENSE.txt for your full rights.
#
"""Package weeplot. A set of modules for doing simple plots
"""
# Define possible exceptions that could get thrown.
class ViolatedPrecondition(StandardError):
"""Exception thrown when a function is called with violated preconditions.
"""