You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
It will make Radon more powerful.
Describe the solution you'd like
A sample example.
try {
1/0
}
catch as err {
raise some error
}
Work List:
Add raise keyword support.
Add raisable errors.
Examples:
ValueError
TypeError
KeyError
IndexError
MemoryError
IOError
NotImplementedError etc more...
For making this multiple errors, we need to make a BaseError class that will be inherited by child classes to make new errors. Also custom (user defined) errors will be supported.
This issue will be edited for any future changes.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
It will make Radon more powerful.
Describe the solution you'd like
A sample example.
Work List:
raise
keyword support.Examples:
ValueError
TypeError
KeyError
IndexError
MemoryError
IOError
NotImplementedError
etc more...BaseError
class that will be inherited by child classes to make new errors. Also custom (user defined) errors will be supported.This issue will be edited for any future changes.
The text was updated successfully, but these errors were encountered: