exceptions ¶
Classes:
-
UnknownEdgeDetectError
–Raised when an unknown edge detect is passed.
-
UnknownRidgeDetectError
–Raised when an unknown ridge detect is passed.
UnknownEdgeDetectError ¶
Bases: _UnknownMaskDetectError
Raised when an unknown edge detect is passed.
Instantiate a new exception with pretty printing and more.
Parameters:
-
func
¶FuncExcept
) –Function this exception was raised from.
-
name
¶str
) –EdgeDetect kind.
-
message
¶str | None
, default:None
) –Message of the error.
Source code in vsmasktools/exceptions.py
14 15 16 17 18 19 20 21 22 23 |
|
UnknownRidgeDetectError ¶
Bases: _UnknownMaskDetectError
Raised when an unknown ridge detect is passed.
Instantiate a new exception with pretty printing and more.
Parameters:
-
func
¶FuncExcept
) –Function this exception was raised from.
-
name
¶str
) –EdgeDetect kind.
-
message
¶str | None
, default:None
) –Message of the error.
Source code in vsmasktools/exceptions.py
14 15 16 17 18 19 20 21 22 23 |
|