Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8583439
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T21:32:18+00:00 2026-06-11T21:32:18+00:00

I have defined my own expection class: public class ProduktException extends Exception { public

  • 0

I have defined my own expection class:

public class ProduktException extends Exception {

    public ProduktException(String msg){
    //null
    }

    public static void throwProduktNotCreatedException() throws ProduktException {
        throw new ProduktException("Cannot be created!");
    }

    public static void throwProduktNotDeletedException () throws ProduktException {
        throw new ProduktException("Cannot be deleted!");
    }
}

My Problem is I do not know how to throw them when I try:

try {
...
} catch(ProduktNotDeletedException e) {
    e.toString();
}

That does not work… But I want to have these structure! What is wrong?

I appreaciate your answer!!!

UPDATE:

My Problem is, I do not want to create several Exception Klasses I want to have all Exceptions in one class. Is there possibly a solution for that?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T21:32:20+00:00Added an answer on June 11, 2026 at 9:32 pm

    If you need to differentiate between different kinds of exceptions, just create 2 different exceptions, maybe something like:

    public class ProduktException extends Exception
    {
        public ProduktException(String msg){
        //null
        }
    }
    

    Then have:

    public class ProduktNotDeletedException extends ProduktException
    {
        ....
    }
    

    and

    public class ProduktNotCreatedException extends ProduktException
    {
        ....
    }
    

    Then you can catch one or the other, or both.

    try {
        ...
    } catch(ProduktNotDeletedException e1) {
        e1.toString();
    } catch(ProduktNotCreatedException e2) {
        e2.toString();
    } 
    

    EDIT:

    For a single class what I mean is:

    public class ProduktException extends Exception {
    
        boolean notDeleted;
        boolean notCreated;
    
        public ProduktException(String msg){
            super(msg);
        }
    
        public boolean isNotDeleted() {
            return(notDeleted);
        }
    
        public boolean isNotCreated() {
            return(notCreated);
        }
    
        public static void throwProduktNotCreatedException() throws ProduktException {
            ProduktException e = new ProduktException("Cannot be created!");
            e.notCreated = true;
            throw e;
        }
    
        public static void throwProduktNotDeletedException () throws ProduktException {
            ProduktException e = new ProduktException("Cannot be deleted!");
            e.notDeleted = true;
            throw e;
        }
    }
    

    Then in your try/catch:

    try {
        ...
    } catch(ProduktException e) {
        e.toString();
        if(e.isNotCreated()) {
            // do something
        }
        if(e.isNotDeleted()) {
            // do something
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a class that defines its own enum like this: public class Test
I have some troubles with my own, user-defined exception in CORBA. Here's my very
I have my own class that represents a custom string class. I'm using VS2012RC.
I have a function in a native DLL defined as follows: #include <string> void
I'm programming using GWT, which includes Jetty. I have defined my own servlet and
I have defined a variable with an own type, say Dim point As DataPoint
Well i have a gridview where i have defined the columns on my own
I have my own routing rules in routes.php, defined for all the pages that
Zend Project with multiple modules and every modules have its own routes.ini defined inside
I have defined the following class using COM to use the IGroupPolicyObject using C#.NET:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.