How do you create a class exception?

An exception is an issue [run time error] that occurred during the execution of a program. When an exception occurred the program gets terminated abruptly and, the code past the line that generated the exception never gets executed.

Java provides us the facility to create our own exceptions which are basically derived classes of Exception. Creating our own Exception is known as a custom exception or user-defined exception. Basically, Java custom exceptions are used to customize the exception according to user needs. In simple words, we can say that a User-Defined Exception or custom exception is creating your own exception class and throwing that exception using the ‘throw’ keyword.

For example, MyException in the below code extends the Exception class. 

Why use custom exceptions?

Java exceptions cover almost all the general types of exceptions that may occur in the programming. However, we sometimes need to create custom exceptions.

Following are a few of the reasons to use custom exceptions:

  • To catch and provide specific treatment to a subset of existing Java exceptions.
  • Business logic exceptions: These are the exceptions related to business logic and workflow. It is useful for the application users or the developers to understand the exact problem.

In order to create a custom exception, we need to extend the Exception class that belongs to java.lang package.

Example: We pass the string to the constructor of the superclass- Exception which is obtained using the “getMessage[]” function on the object created.

Java

class MyException extends Exception {

    public MyException[String s]

    {

        super[s];

    }

}

public class Main {

    public static void main[String args[]]

    {

        try {

            throw new MyException["GeeksGeeks"];

        }

        catch [MyException ex] {

            System.out.println["Caught"];

            System.out.println[ex.getMessage[]];

        }

    }

}

In the above code, the constructor of MyException requires a string as its argument. The string is passed to the parent class Exception’s constructor using super[]. The constructor of the Exception class can also be called without a parameter and the call to super is not mandatory. 

Java

class MyException extends Exception {

}

public class setText {

    public static void main[String args[]]

    {

        try {

            throw new MyException[];

        }

        catch [MyException ex] {

            System.out.println["Caught"];

            System.out.println[ex.getMessage[]];

        }

    }

}

This article is contributed by Pranjal Mathur. If you like GeeksforGeeks and would like to contribute, you can also write an article and mail your article to . See your article appearing on the GeeksforGeeks main page and help other Geeks. 


Skip to main content

This browser is no longer supported.

Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.

How to create user-defined exceptions

  • Article
  • 08/12/2022
  • 2 minutes to read

In this article

.NET provides a hierarchy of exception classes ultimately derived from the Exception base class. However, if none of the predefined exceptions meet your needs, you can create your own exception classes by deriving from the Exception class.

When creating your own exceptions, end the class name of the user-defined exception with the word "Exception", and implement the three common constructors, as shown in the following example. The example defines a new exception class named EmployeeListNotFoundException. The class is derived from the Exception base class and includes three constructors.

using namespace System; public ref class EmployeeListNotFoundException : Exception { public: EmployeeListNotFoundException[] { } EmployeeListNotFoundException[String^ message] : Exception[message] { } EmployeeListNotFoundException[String^ message, Exception^ inner] : Exception[message, inner] { } }; using System; public class EmployeeListNotFoundException : Exception { public EmployeeListNotFoundException[] { } public EmployeeListNotFoundException[string message] : base[message] { } public EmployeeListNotFoundException[string message, Exception inner] : base[message, inner] { } } Public Class EmployeeListNotFoundException Inherits Exception Public Sub New[] End Sub Public Sub New[message As String] MyBase.New[message] End Sub Public Sub New[message As String, inner As Exception] MyBase.New[message, inner] End Sub End Class

Note

In situations where you're using remoting, you must ensure that the metadata for any user-defined exceptions is available at the server [callee] and to the client [the proxy object or caller]. For more information, see Best practices for exceptions.

See also

  • Exceptions

Feedback

Submit and view feedback for

How do you create an exception?

Steps to create a Custom Exception with an Example.
CustomException class is the custom exception class this class is extending Exception class..
Create one local variable message to store the exception message locally in the class object..
We are passing a string argument to the constructor of the custom exception object..

How do you create an exception class in SAP?

In the Repository Browser [transaction SE80], navigate to the package in which you want to create an exception class. In the context menu of the package, choose Create → Class Library → Class. The Create Class dialog box appears. In the Class Type group box, choose Exception Class.

How do we create exception in Java?

To create a custom exception, we have to extend the java. lang. Exception class. Note that we also have to provide a constructor that takes a String as the error message and called the parent class constructor.

How do you write an exception class in C++?

Let's see the simple example of user-defined exception in which std::exception class is used to define the exception..
#include .
#include .
using namespace std;.
class MyException : public exception{.
public:.
const char * what[] const throw[].
return "Attempted to divide by zero!\n";.

Chủ Đề