custom-exceptions Questions

1

I have created a custom exception class as below namespace testingEXception { public class CustomException : Exception { public CustomException() { } public CustomException(string me...
Reeder asked 14/8, 2013 at 16:57

4

Solved

What are industry standard best practices for implementing custom exceptions in C#? I have checked Google and there's a great number of recommendations, however I don't know which ones hold more ...
Italic asked 25/1, 2011 at 9:35

3

Solved

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....
Carefree asked 19/7, 2011 at 4:32

2

Solved

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): def...

3

Solved

This has been driving me crazy all night. class ExceptionImpl; /** * Custom Exception. */ class Exception : public virtual std::exception { public: Exception( const Exception& original ); ...
Sub asked 25/6, 2011 at 12:38

3

Solved

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 o...
Janessajanet asked 6/11, 2012 at 20:23

1

Solved

How do I write a Mockito-based JUnit method to test this method adduser()? I tried writing one, but it's failing with an error message saying exception is not handled. The error is displayed for: ...
Denby asked 11/2, 2012 at 7:51

1

Solved

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 'caught division_by_z...
Verminous asked 14/10, 2011 at 12:15

1

Solved

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) exce...
Lampkin asked 13/6, 2011 at 21:53

5

Solved

I'm working on a logging program, and I'd like to avoid processing the same Exception object repeatedly when it is being logged repeatedly because it is percolating up through a nested call structu...
Connubial asked 11/6, 2011 at 2:19

2

Solved

I have a question on how to send a custom exception as FaultException. It works when I use a system Exception like ArgumentException, but if I change it to my custom exception "TestException" it fa...
Verve asked 19/4, 2011 at 13:36

8

Solved

I have read a few of the other questions regarding C# Exception Handling Practices but none seem to ask what I am looking for. If I implement my own custom Exception for a particular class or set ...
Kairouan asked 21/1, 2011 at 16:30

6

Solved

Any big reasons to define custome exceptions in Java?
Victualer asked 9/3, 2011 at 11:2

3

Solved

I'm looking to implement my own set of Exceptions for a projects I am currently working on. The project relies on a core framework with a base framework exception MyFrameworkException (I am also wr...
Hagiarchy asked 14/10, 2010 at 15:17

4

Solved

I'm writing a c# application which uses automation to control another program. Naturally that program must be running for my program to work. When my program looks for the application and can't fin...
Oscitant asked 12/8, 2010 at 20:39

10

Solved

Why is it a "bad idea" to throw your own exceptions? found here
Lubbock asked 6/2, 2010 at 23:12

6

Solved

Thanks for the input on this question, I've decided to go with making my Create() method throw exceptions so as Jon Skeet said, you don't have to handle them everywhere and can just let them bubble...
Include asked 10/6, 2009 at 13:55

© 2022 - 2024 — McMap. All rights reserved.