Custom Exception inherits the properties from the Exception class. Whenever we declare our own exception, it is known as custom exception.

learn more… | top users | synonyms

0
votes
1answer
33 views

Custom Exception without new throw in .NET

I am not sure if this is at all possible. (I think it should). Would it be possible to catch a customexception without throwing new one as follows? try { //Some logic ...
0
votes
0answers
48 views

In Stripes framework, how do I handle my thrown custom exception in my Custom Exception Handler

I'm using Java Stripes framework. I've written a Custom Exception Handler. I've written some custom Exception classes. I would like to catch certain exceptions that happen, and then throw my custom ...
1
vote
6answers
61 views

How can I get the name of the class that throws a custom made Exception

I'm preparing a project for college where I need to write a custom made exception that will be thrown by a couple of classes in the same package when they were not initialized properly. The problem is ...
0
votes
1answer
39 views

Interview_Question on Custom Exception in C#

I faced a question on Custom Exceptions in an Interview. As below there are four multiple catches which catch each custom exception. Interviewer asked me to write a pseudo code for catch blocks how i ...
0
votes
2answers
125 views

Creating Exceptions C++

So I have an upcoming assignment dealing with exceptions and using them in my current address book program that most of the homework is centered around. I decided to play around with exceptions and ...
1
vote
2answers
54 views

Ruby custom error classes: the message attribute, and inheritance

I can't seem to find much information about custom exception classes. What I do know You can declare your custom error class and let it inherit from StandardError, so it can be rescued: class ...
0
votes
0answers
35 views

Best Practice to display error messages to client?

We are in the process of cleaning out our code base and wanted to know what is the best practice on handling error messages that will be sent back to the client. Right now we have a class with a ...
1
vote
3answers
86 views

Is it bad programming to just throw exceptions while not in a try catch block?

I'm currently working in PHP. I'm working on a error system for my CMS I'm building (for the fun of it). For fatal errors in my system (not in the php compiler) I created a FatalException class that ...
2
votes
2answers
91 views

python calling custom exceptions from if-statement and try-except

So, I've created a custom exception that I want to call in 2 different ways (a if/else statement, and a try/except statement). Here is the custom exception: class CustomException(Exception): ...
0
votes
4answers
135 views

Clarification : Try Catch vs Throw the exception and why call base class constructor

Following the example in book and got the following slightly modified code: class OutOfHoneyException : Exception { public OutOfHoneyException(string message) :base(message){} } class ...
1
vote
4answers
202 views

Custom exceptions and base constructor

I've been trying to write my own custom constructor, but getting error about base() constructor. I've also been searching how to solve this error, but found nothing and all the examples round the ...
1
vote
2answers
144 views

Java - how to overwrite getMessage() for custom checked and unchecked exceptions using one implementation?

How to have MyException and MyRuntimeException use the same custom getMessage() implementation? As Java does not come with multiple inheritance I don't know what to do. At the moment I have duplicate ...
0
votes
1answer
67 views

Custom Exception with WCF

hey i am using Oleg Sych's solution for handling exception via WCF: link everything works well with Known Exceptions (such as InvalidOperationException and SystemException) but when i am trying to ...
0
votes
1answer
131 views

g++ custom exception handler

Would it be possible to install a custom handler for GCC? I'm trying to throw a wrapper class to a pointer (like shared_ptr) and then catch it covariantly. This is actually for my Managed C++ for GCC ...
0
votes
2answers
27 views

bubling up the exceptions in PHP?

Supposing I have this scenario: function1() call to function2(), and function2() call to function3(). if function3() throws an exception, can I capture the exception from function1()? And in the ...
-2
votes
3answers
470 views

writing custom exceptions in c++ [closed]

I am coming from a Ruby and java background and have recently begun exploring c++. While my initial attempts at creating custom exceptions by simply subclassing exception class failed with obscure , ...
1
vote
2answers
280 views

Custom Exceptions Class Naming in Java

I am trying to create a custom exception class but having trouble naming. Here's what I have so far: public class MyException extends Exception { public MyException() { } } Now, I want an ...
1
vote
1answer
232 views

Throwing custom exceptions in Javascript. Which style to use?

Douglas Crockford recommends doing something like this: throw { name: "System Error", message: "Something horrible happened." }; But you could also do something like this: function ...
0
votes
1answer
72 views

Is it a good practice to use “die()” when dealing with custom PHP Exceptions?

I've wrote a custom exception class in PHP: <?php class Custom_Exception extends Exception { public function __construct( $title, $message, $code = 0, Exception $previous = null ) { ...
3
votes
1answer
252 views

Organizing Custom Exceptions in C#

I am creating a C# application and am trying to take advantage of custom exceptions when appropriate. I've looked at other questions here and at the MSDN design guidelines but didn't come across ...
0
votes
5answers
146 views

New exception class the extends exception class and has two constructors

Create a new exception class IllegalDimensionException that extends Exception class. It will have two constructors, one default- value and one explicit value that uses the message "Illegal dimension ...
0
votes
0answers
530 views

jQuery Ajax error handling, pass the custom error messages as json object to the view

I have a controller: [AjaxOnly] [HandleValidationError] [DataContext] public ActionResult Save(FranchiseInfo FranchiseInfo) { // some logic // an exception is thrown here ...
1
vote
3answers
103 views

Handling exceptions for multiple calls to functions of a class

I can't get my head around WHEN to throw and catch exceptions for when I call functions from classes. Please imagine that my QuizMaker class looks like this: // Define exceptions for use in class ...
0
votes
1answer
267 views

Not able to catch custom exception of web service in their own catch blocks

We are using a web service which throws 3 types of custom web service faults i.e. ServiceException, ConnectionException and InvalidDataException. Along with these catch blocks, we have also put in ...
1
vote
2answers
156 views

PHP Does Custom Exception Handler require try {} catch?

I've written the following custom Exception handler: namespace System\Exception; class Handler extends \Exception { public static function getException($e = null) { if (ENVIRONMENT ...
0
votes
2answers
997 views

In JSF, a custom exception thrown by called EJB is seen as EJBTransactionRolledBackException or NullPointerException or ServletException

Here's the problem: The EJB throws this exception (from the glassfish logs): SEVERE: Attempting to confirm previously confirmed login using confirmation UUID: b90b33ca-dc69-41c1-9c60-99152810c89b ...
0
votes
1answer
86 views

Custom exception handling and usage for laboratory web site

I know similar things have been asked before but it doesn't remove my doubts on the matter. Around all my pages Page_Load methodes and every other methode that calls a methode that connects to the ...
2
votes
0answers
168 views

Convert JSR303 JavaBean Validation exceptions to custom exceptions

I have implemented the JSR303 JavaBean Validation in the Service layer of my web app (according to this article). Now I want to convert all validation exceptions (e.g. ...
1
vote
3answers
900 views

Best way to add exceptions in jquery selectors paths

let say i want to bind all items that are under #mainDiv .user Except #mainDiv #exception .user I can think of $('#mainDiv .user').bind('event',function(){ ...
5
votes
2answers
1k views

using mockito to test methods which throws uncatched custom exceptions

How to write a mockito based junit method to test this method adduser ??? i tried writing one , but its failing with a error message saying exception not handled. Error displayed for ...
2
votes
3answers
131 views

c# exception questions

Thank you all for helping. This code doesn't produce what I expect when the divisor is 1. The base class for ExceptOne doesn't get called, the hyperlink in ExceptOne doesn't get displayed. What am I ...
0
votes
1answer
86 views

Trying to suspend threads after custom exception called

This is a school assignment I have been working on. I've been back and forth with my tutor and he's been helping me with this but there's something I'm obviously missing here. The program in question ...
1
vote
1answer
157 views

Custom Exceptions and reducing duplicated code

I have decided to use Exceptions in my code to pass error handling around. I found myself duplicating code each time I wanted to create a new exception. These classes were nothing special and only ...
0
votes
5answers
207 views

C# Windows Forms custom exception problems

I'm trying to get this to throw an exception if year entered in TextBoxCopyrightYear.Text is higher than the current year, but it does not seem to be doing it. The question is... why is it not ...
1
vote
2answers
994 views

How to handle Unchecked / Runtime Exceptions in MULE.?

Does anybody know how to handle Unchecked / Runtime Exceptions in MULE..?? I mean, in my java code, for a certain reason , i am "throwing an Exception" and i want Mule to detect it and route it to ...
4
votes
4answers
1k views

User defined exceptions: when do we use them? What is an “exceptional” situation?

I'm sure that this question has been addressed in many best practices books, but still... Most of the times I see examples of wrong usage of custom exceptions, therefore I was wondering what would be ...
3
votes
1answer
945 views

PostgreSQL custom exception conditions

Is it possible to create custom conditions when I raise an exception? Consider the following example: BEGIN y := x / 0; EXCEPTION WHEN division_by_zero THEN RAISE NOTICE ...
0
votes
2answers
391 views

Returning results/erros from WCF services. Complex type or an exception?

A few days ago I asked a very similar question. I was about returning values/errors inside the application. I accept an answer to not return error as and object but throw an custom exceptions. Now, ...
3
votes
2answers
120 views

Catching all crashes in C# .NET

There are already some pretty good threads on this topic on Stack Overflow, but there doesn't really seem to be a concise answer on any of them. My C# console application (running as a Windows ...
0
votes
1answer
473 views

WebProtocolException was unhandled by user code

The code in my try block looks something like below: catch (ThinkBusinessLogicException ex) { var message = (ex.InnerException != null) ? ex.InnerException.ToString() : ex.Message; if ...
3
votes
2answers
519 views

Can you throw an array instead of a string as an exception in php?

I want to throw an array as an exception in php, instead of a string. Is it possible to do this if you define your own class that extends the Exception class? For example throw new ...
6
votes
3answers
6k views

Exception handler in Spring MVC

I want to create an exception handler which will intercept all controllers in my project. Is that possible to do? Looks like I have to put a handler method in each controller. Thanks for your help. I ...
1
vote
2answers
521 views

Inheritance and static members in Java

I am working on a project which contains a couple of modules. I want to provide the ability in every module to have a custom exception that statically populates internal structure, e.g. HashMap, from ...
0
votes
4answers
404 views

How to display my own exception?

I'm developing a web project where i need to add custom exception classes. For example, how can i display a message from my custom exception class when the session timeout occurs? Please help. Any ...
3
votes
2answers
262 views

Are python-ldap's exceptions organized in a hierarchy?

I have a code like this: try: .... l.simple_bind_s(user, password) except ldap.CONNECT_ERROR, e: sys.exit(1) except ldap.BUSY, e: sys.exit(2) except ldap.OPT_NETWORK_TIMEOUT, e: ...
1
vote
1answer
862 views

Getting a list of existing Rails Error classes for re-use/inheritance

Often I need to throw a custom(ized) error. Like when a resource cannot be found due to a mismatch in parameters or so. I prefer to throw existing errors or, throw an error that is inherited from an ...
3
votes
3answers
515 views

Uncatchable custom exception C++

This has been driving me crazy all night. class ExceptionImpl; /** * Custom Exception. */ class Exception : public virtual std::exception { public: Exception( const Exception& original ); ...
5
votes
1answer
385 views

Iron Python and VS2010 debugging woes

I'm starting to use IronPython and VS2010 and I'm having trouble with the debugging environment... can anyone point me in the right direction? Note that my python knowledge is less than a week old so ...
0
votes
1answer
230 views

How to catch a pywin32com exception on opening files

I am trying to open an excel file in python using COM, and trying to catch the file not found error: I first tried catching the IOError: try: output = xl.Workbooks.Open(Params.workbookName) ...
1
vote
2answers
1k views

Problem throwing and catching custom exceptions in C++

I've created the class Someting which throws an exception SomethingException (SomethingException inherits from std::exception) when it fails to instantiate. the problem is I can't catch ...

1 2