Mercurial > ~astiob > upreckon > hgweb
view upreckon/exceptions.py @ 201:32650f4a2177
taskweight can now be an iterable or a mapping
If an iterable, its items correspond to items of the problems
configuration variable. If a mapping, its keys are problem
names.
author | Oleg Oshmyan <chortos@inbox.lv> |
---|---|
date | Wed, 17 Aug 2011 01:05:06 +0300 |
parents | d5b6708c1955 |
children | 65b5c9390010 |
line wrap: on
line source
# Copyright (c) 2010-2011 Chortos-2 <chortos@inbox.lv> __all__ = ('TestCaseNotPassed', 'TestCaseSkipped', 'TimeLimitExceeded', 'CPUTimeLimitExceeded', 'WallTimeLimitExceeded', 'MemoryLimitExceeded', 'CanceledByUser', 'WrongAnswer', 'NonZeroExitCode', 'ExceptionWrapper', 'CannotStartTestee', 'CannotStartValidator', 'CannotReadOutputFile', 'CannotReadInputFile', 'CannotReadAnswerFile') class TestCaseNotPassed(Exception): __slots__ = () class TestCaseSkipped(TestCaseNotPassed): __slots__ = () class TimeLimitExceeded(TestCaseNotPassed): __slots__ = () class CPUTimeLimitExceeded(TimeLimitExceeded): __slots__ = () class WallTimeLimitExceeded(TimeLimitExceeded): __slots__ = () class MemoryLimitExceeded(TestCaseNotPassed): __slots__ = () class CanceledByUser(TestCaseNotPassed): __slots__ = () class WrongAnswer(TestCaseNotPassed): __slots__ = 'comment' def __init__(self, comment=''): self.comment = comment class NonZeroExitCode(TestCaseNotPassed): __slots__ = 'exitcode' def __init__(self, exitcode): self.exitcode = exitcode class ExceptionWrapper(TestCaseNotPassed): __slots__ = 'upstream' def __init__(self, upstream): self.upstream = upstream class CannotStartTestee(ExceptionWrapper): __slots__ = () class CannotStartValidator(ExceptionWrapper): __slots__ = () class CannotReadOutputFile(ExceptionWrapper): __slots__ = () class CannotReadInputFile(ExceptionWrapper): __slots__ = () class CannotReadAnswerFile(ExceptionWrapper): __slots__ = ()