# HG changeset patch
# User Nathann Cohen <nathann.cohen@gmail.com>
# Date 1279772575 -28800
# Node ID 30dd6dd62b0bd9453b15b75aa364dff2d0d656f8
# Parent cb1ad1ee5bd452850fde04d47f9618dec4c3e997
trac #9571 -- missing title for sage.misc.exceptions
diff -r cb1ad1ee5bd4 -r 30dd6dd62b0b sage/misc/exceptions.py
a
|
b
|
|
| 1 | r""" |
| 2 | Exceptions |
| 3 | |
| 4 | This module defines Sage-specific exceptions. |
| 5 | """ |
| 6 | |
1 | 7 | class OptionalPackageNotFoundError(RuntimeError): |
2 | 8 | """ |
3 | 9 | This class defines the exception that should be raised when a |