File: exceptions.py

package info (click to toggle)
simple-cdd 0.6.8
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 340 kB
  • sloc: python: 1,901; sh: 111; makefile: 13
file content (7 lines) | stat: -rw-r--r-- 205 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
class Fail(BaseException):
    """
    Exception thrown when some check decided that the CDD building process
    cannot proceed.
    """
    def __str__(self):
        return self.args[0] % self.args[1:]