How To Install perl-Exception-Class-TryCatch on CentOS 7

In this tutorial we learn how to install perl-Exception-Class-TryCatch on CentOS 7. perl-Exception-Class-TryCatch is Syntactic try/catch sugar for use with Exception::Class

Introduction

In this tutorial we learn how to install perl-Exception-Class-TryCatch on CentOS 7.

What is perl-Exception-Class-TryCatch

Exception Exception primary objective is to allow users to avoid dealing directly with $@ by ensuring that any exceptions caught in an eval are captured as Exception begin with or whether the error resulted from die. This means that users may immediately use isa and various Exception to process the exception.

We can use yum or dnf to install perl-Exception-Class-TryCatch on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install perl-Exception-Class-TryCatch.

Install perl-Exception-Class-TryCatch on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install perl-Exception-Class-TryCatch using yum by running the following command:

sudo yum -y install perl-Exception-Class-TryCatch

Install perl-Exception-Class-TryCatch on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install perl-Exception-Class-TryCatch using dnf by running the following command:

sudo dnf -y install perl-Exception-Class-TryCatch

How To Uninstall perl-Exception-Class-TryCatch on CentOS 7

To uninstall only the perl-Exception-Class-TryCatch package we can use the following command:

sudo dnf remove perl-Exception-Class-TryCatch

References

Summary

In this tutorial we learn how to install perl-Exception-Class-TryCatch on CentOS 7 using yum and dnf.