dcl.CycleError
Version 2.x
dcl.CycleError
is present only when dcl/debug
is imported. Otherwise, Error
will be thrown.
It is thrown, when dcl
encounters an impossible inheritance. For example, when A
depends on B
, and B
depends on A
.
dcl.CycleError
is based on dcl.DclError.
Examples
1 2 3 4 5 6 7 8 9 10 11 12 |
|
You will see the following exception:
1
|
|