exceptions ¶
Classes:
-
UnknownDescalerError
–Raised when an unknown descaler is passed.
-
UnknownKernelError
–Raised when an unknown kernel is passed.
-
UnknownResamplerError
–Raised when an unknown resampler is passed.
-
UnknownScalerError
–Raised when an unknown scaler is passed.
UnknownDescalerError ¶
Bases: _UnknownBaseScalerError
Raised when an unknown descaler is passed.
Instantiate a new exception with pretty printing and more.
Parameters:
-
func
¶FuncExceptT
) –Function this exception was raised from.
-
name
¶str
) –Base scaler name.
-
message
¶str | None
, default:None
) –Message of the error.
Source code
22 23 24 25 26 27 28 29 30 31 32 |
|
UnknownKernelError ¶
Bases: _UnknownBaseScalerError
Raised when an unknown kernel is passed.
Instantiate a new exception with pretty printing and more.
Parameters:
-
func
¶FuncExceptT
) –Function this exception was raised from.
-
name
¶str
) –Base scaler name.
-
message
¶str | None
, default:None
) –Message of the error.
Source code
22 23 24 25 26 27 28 29 30 31 32 |
|
UnknownResamplerError ¶
Bases: _UnknownBaseScalerError
Raised when an unknown resampler is passed.
Instantiate a new exception with pretty printing and more.
Parameters:
-
func
¶FuncExceptT
) –Function this exception was raised from.
-
name
¶str
) –Base scaler name.
-
message
¶str | None
, default:None
) –Message of the error.
Source code
22 23 24 25 26 27 28 29 30 31 32 |
|
UnknownScalerError ¶
Bases: _UnknownBaseScalerError
Raised when an unknown scaler is passed.
Instantiate a new exception with pretty printing and more.
Parameters:
-
func
¶FuncExceptT
) –Function this exception was raised from.
-
name
¶str
) –Base scaler name.
-
message
¶str | None
, default:None
) –Message of the error.
Source code
22 23 24 25 26 27 28 29 30 31 32 |
|