How to Install and Uninstall perl-Exception-Base Package on openSuSE Tumbleweed

Last updated: May 18,2024

1. Install "perl-Exception-Base" package

Please follow the step by step instructions below to install perl-Exception-Base on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-Exception-Base

2. Uninstall "perl-Exception-Base" package

Learn how to uninstall perl-Exception-Base on openSuSE Tumbleweed:

$ sudo zypper remove perl-Exception-Base

3. Information about the perl-Exception-Base package on openSuSE Tumbleweed

Information for package perl-Exception-Base:
--------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Exception-Base
Version : 0.2501-2.2
Arch : noarch
Vendor : openSUSE
Installed Size : 159.3 KiB
Installed : No
Status : not installed
Source package : perl-Exception-Base-0.2501-2.2.src
Upstream URL : https://metacpan.org/release/Exception-Base
Summary : Lightweight exceptions
Description :
This class implements a fully OO exception mechanism similar to
Exception::Class or Class::Throwable. It provides a simple interface
allowing programmers to declare exception classes. These classes can be
thrown and caught. Each uncaught exception prints full stack trace if the
default verbosity is increased for debugging purposes.
The features of 'Exception::Base':
* fast implementation of the exception class
* fully OO without closures and source code filtering
* does not mess with '$SIG{__DIE__}' and '$SIG{__WARN__}'
* no external run-time modules dependencies, requires core Perl modules only
* the default behavior of exception class can be changed globally or just for
the thrown exception
* matching the exception by class, message or other attributes
* matching with string, regex or closure function
* creating automatically the derived exception classes (perlfunc/use
interface)
* easily expendable, see Exception::System class for example
* prints just an error message or dumps full stack trace
* can propagate (rethrow) an exception
* can ignore some packages for stack trace output
* some defaults (i.e. verbosity) can be different for different exceptions