How To Install libexception-class-trycatch-perl on Ubuntu 20.04

In this tutorial we learn how to install libexception-class-trycatch-perl on Ubuntu 20.04. libexception-class-trycatch-perl is syntactic try/catch sugar for use with Exception

Introduction

In this tutorial we learn how to install libexception-class-trycatch-perl on Ubuntu 20.04.

What is libexception-class-trycatch-perl

libexception-class-trycatch-perl is:

Exception::Class::TryCatch provides syntactic sugar for use with Exception::Class using the familiar keywords try and catch. Its primary objective is to allow users to avoid dealing directly with $@ by ensuring that any exceptions caught in an eval are captured as Exception::Class objects, whether they were thrown objects to begin with or whether the error resulted from die. This means that users may immediately use isa and various Exception::Class methods to process the exception.

In addition, this module provides for a method to push errors onto a hidden error stack immediately after an eval so that cleanup code or other error handling may also call eval without the original error in $@ being lost.

There are three methods to install libexception-class-trycatch-perl on Ubuntu 20.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libexception-class-trycatch-perl Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install libexception-class-trycatch-perl using apt-get by running the following command:

sudo apt-get -y install libexception-class-trycatch-perl

Install libexception-class-trycatch-perl Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libexception-class-trycatch-perl using apt by running the following command:

sudo apt -y install libexception-class-trycatch-perl

Install libexception-class-trycatch-perl Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install libexception-class-trycatch-perl using aptitude by running the following command:

sudo aptitude -y install libexception-class-trycatch-perl

How To Uninstall libexception-class-trycatch-perl on Ubuntu 20.04

To uninstall only the libexception-class-trycatch-perl package we can use the following command:

sudo apt-get remove libexception-class-trycatch-perl

Uninstall libexception-class-trycatch-perl And Its Dependencies

To uninstall libexception-class-trycatch-perl and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove libexception-class-trycatch-perl

Remove libexception-class-trycatch-perl Configurations and Data

To remove libexception-class-trycatch-perl configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge libexception-class-trycatch-perl

Remove libexception-class-trycatch-perl configuration, data, and all of its dependencies

We can use the following command to remove libexception-class-trycatch-perl configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libexception-class-trycatch-perl

References

Summary

In this tutorial we learn how to install libexception-class-trycatch-perl package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.