An exception is a rarely occurring (exceptional!) condition that requires deviation from the program's normal flow. Normally, an exception should not result in total failure, but instead be attended by an exception handler. Exception handling is a built-in construct in many programming languages. ...

learn more… | top users | synonyms (1)

0
votes
1answer
20 views

File.delete throws Errno:EACCESS Permission Denied in ruby

The following code that is meant to delete lines that match a regular expression fails def delete_entry(name) puts "Deleting #{name}.." if $DEBUG begin File.open("#{@file_name}.tmp", ...
1
vote
0answers
24 views

resources not found - android

I have had my first errors come through via the developer console on a published app. The errors are: java.lang.RuntimeException: Unable to start activity ...
1
vote
0answers
38 views

c++ lambda self-passing exception

When I run this code, I get std::bad_functon_call exception. I cannot figure out whats the reason for this exception. It's thrown by the async_receive inside receiveCallback. Is receiveCallback ...
1
vote
2answers
19 views

How to make exception in coding for safari visitors?

in a part of my code I have CSS3 animation and it seems does not work very well on safari, but it's fine on other browsers, so, I would like to make and exception, and if the browser is safari then it ...
0
votes
2answers
24 views

Unknown exception in custom JButton, in java (swing)

I have tried to create a custom JButton. I tried to paint its caption via the paintComponent method but i did not like the font rendering of this method. So I added a JLabel to my button which worked ...
0
votes
4answers
60 views

Nullpointer exception Java

I am a beginner in Java and I have a few problems with null. I need help with understanding the following questions. I have answered them correctly, however I do not know the exact reason behind them. ...
9
votes
1answer
44 views

Difference between $! versus a variable with rescue

When rescuing from an exception, there are two ways to refer to the raised exception: begin ... rescue Exception => e handle_the_error(e) end and begin ... rescue Exception ...
1
vote
2answers
43 views

Java socket - simple program doesn't work

I've spent lot of time to find out where is the problem but with no success. Server is launching correctly, but when I launch Client I get "Unexpected Error" exception. I've changed ports too with no ...
-2
votes
2answers
47 views

Catching exception from out of index

I have some main file which i can not edit. There are some things to be done and i am writing classes suitable to main file. v1 object is an instance of my own vector class. At some point of main i ...
0
votes
2answers
45 views

Why is this code throwing an InvalidOperationException?

I think that my code should make the ViewBag.test property equal to "No Match", but instead it throws an InvalidOperationException. Why is this? string str = "Hello1,Hello,Hello2"; string another = ...
0
votes
1answer
33 views

print all exception locations in java

I have an exception in Java/GWT/Hibernate. The exception is printed in the console in this form: org.hibernate.exception.SQLGrammarException: could not execute query at ...
12
votes
2answers
311 views

Does the C++ Standard allow the addition of two integers (fundamental type int) to throw a C++ exception?

Does the Standard allow this? I don't think it does. Someone does. I need intelligent people to prove him wrong.
-1
votes
2answers
50 views

Can't create form in another thread C# [closed]

I built a C# program that open other forms using multithread (I use it because it take time to load the forms) , something like a portal. My problem is when I call to create a specific form in the ...
0
votes
3answers
38 views

Java Nested Exception Handling

I came across a code base that read a text file and analyzes it. I am bit confused with the way the exceptions are used. A separate class AppFileReaderException that extends exceptions has been ...
0
votes
2answers
34 views

StringIndexout of range

I got an error: StringIndex out of range: -1 with error line is String anEmail = lineFromFile.substring(s+1, e). As you can see im trying to print a part of a line in an input file but i doesn't ...
0
votes
1answer
27 views

functools.partial on class method

I'm trying to define some class methods using another more generic class method as follows: class RGB(object): def __init__(self, red, blue, green): super(RGB, self).__init__() ...
0
votes
2answers
55 views

RadioButtons and Throwing Exception

I have two radio buttons for the user to select the type of movie they like. This is just an example program, as I want to understand throwing exceptions better. When the user clicks the display ...
0
votes
1answer
23 views

JSON NET throwing Unexpected Character Exception [closed]

I'm parsing the following JSON with json.net. ...
0
votes
2answers
25 views

Socket.connect doesn't throw exception in Android

If I put a nonsense url no exception is thrown and none of the rest of my code is executed not even the rest of the asynctask that called the method that connects. try { ...
3
votes
1answer
58 views

Do I need a return statement after a Python exception?

I'm rather new to python, and I want to make sure I'm doing this correctly. I'd like to have an exception class: class UnknownCommandReceived(Exception): def __init__(self, value): ...
0
votes
3answers
80 views

ClassNotFound exception

public class dummy { public static void main(String[] args) { System.out.println("hello world"); } public void init() { //"dummy2" class defined in a different jar dummy2 d = ...
0
votes
1answer
25 views

Tracing an ignored exception in Python?

My app has a custom audio library that itself uses the BASS library. I create and destroy BASS stream objects throughout the program. When my program exits, randomly (I haven't figured out the ...
1
vote
1answer
16 views

Bubbling errors from c++/clr to c#/.net

I have the following code begin ran in a native/win32 c++ library. // Load lt dll OutputDebugString(L"LoadLtDll"); m_LTDll = LoadLtDll("C:/Program Files/Enciris Technologies/LT101 Driver ...
0
votes
0answers
16 views

Proper way for MonkeyRunner to Handle Device Exceptions?

The Problem ADB is somewhat unreliable and a connection to a device/emulator does not always work or fails. This is a known problem and logs messages such as, 130316 04:08:48.714:S [MainThread] ...
0
votes
2answers
35 views

uncaught PHP exception causing 500 server error

In a newly installed MAMP, an uncaught PHP exception is causing an HTTP 500 server error, instead of being trapped by PHP. For example, this program causes a 500: <?php throw new Exception(); ...
0
votes
0answers
37 views

Failed to load a dll in the Temp Directory on a Windows Server

I have developed an C# application that run very well in local. But there is a problem when i put on the server. The application use a DLL library (A.dll) in a point of the execution, this A.dll ...
0
votes
0answers
16 views

error inflating class android.widget.listView slidingMenu

My app force closes and gives this error Im using the SlidingMenuLibrary to have a slide out menu from the left side and im thinking this is where my problem is but i dont know how to solve it. ...
0
votes
1answer
22 views

Weird Crash Report on Google Play Developer Console

I have an app on the play store which has thrown an exception which I can see in the developer console. The error is as follows java.lang.RuntimeException: MotionEvent { action=ACTION_UP, id[0]=0, ...
3
votes
3answers
79 views

On exceptions in C++ destructors, are all properties automatically destroyed

I've been using C++ for years, but in an environment using what might be considered old fashioned. Specifically we did not use auto_ptr's and were not allowed to alloc memory in constructors. Moving ...
0
votes
1answer
27 views

Trouble with javax.crypto.Cipher

I have imported the following into my project import java.security.*; import javax.crypto.*; import javax.crypto.spec.*; import java.io.*; The following is telling me "Unhandled exception type ...
0
votes
0answers
15 views

Android GCM SSLException

I'm planning to use GCM features for an Android app. I setup the proper Android app and the backend service deployed on localhost. Everyting was fine and the notifications were displayed on my ...
5
votes
3answers
64 views

Is it reasonable to declare an exception type for a single function?

Say I have this code: def wait_for_x(timeout_at=None): while condition_that_could_raise_exceptions if timeout_at is not None and time.time() > timeout_at: raise ...
1
vote
1answer
36 views

Get typename of derived class from base instance in C++

I am creating a generic error handler for a C++ project. As part of the logging, I want to include the name of the exception class. I'm hoping there's a way to generically get the name of the specific ...
0
votes
0answers
16 views

ASP.NET MVC 3 Add Custom Header Exception

I want to add response header "Access-Token" >name "My Custom Value">value then i am getting this error; system.platformnotsupportedexception why do you think? public abstract class ...
0
votes
0answers
21 views

Deciding on how to split up different types of Exceptions [closed]

I have a Database interface with these methods: createTable tableExists dropTable insert update select delete getInsertId A lot of those can fail. In my first implementation I'm basically just ...
0
votes
1answer
36 views

Logging errors in a grails application in the logs

When my Grails application crashes, it shows the error and the stacktrace on the error page because the error.gsp page has the following snippet <g:renderException exception="${exception}" />. ...
1
vote
1answer
33 views

String was not recognized as a valid DateTime error when I get data from a textbox

// ddlDepartureTime is a dropdown list string hourtime = ddlDepartureTime.SelectedItem.ToString(); //String format exception occurs here ? // txtDepartureTime is a ...
2
votes
4answers
41 views

ApplicationException or create custom exceptions?

In my file repository, I will throw the following exceptions when the InsertFile() method is called: When the upload file size limit is exceeded When the storage capacity is exceeded At the moment ...
2
votes
1answer
95 views

Strange 0x0eedfade exception in Delphi multi thread program

I have strange problem with my multi threaded server. It is Windows service and works similar to FTP server managing socket connection to many clients. It was created using Delphi 2006 (Turbo Delphi) ...
0
votes
2answers
48 views

Ruby: Rescuing the same error type twice

Is it possible to rescue the same error type more than once in ruby? I am needing to while using the Koala facebook API library like so: begin # Try with user provided app token fb = ...
0
votes
1answer
46 views

Handling Entity Framework SaveChanges() exceptions for cleanup

I have a File Repository library which handles the saving of files onto the server. Along with saving the physical file, a database entry is also recorded. Below is the insert method. public ...
0
votes
2answers
35 views

ClassCastException using JTable?

renbor = tabla_proveedor.getSelectedRow(); DefaultTableModel modelo = (DefaultTableModel) tabla_proveedor.getModel(); modelo.removeRow(renbor); That line of code gives me an error, it gives me... ...
0
votes
0answers
20 views

Behat/Mink Test Case Issue: Filling fields not belong to a form

When writing test cases for my Symfony2 application using Behat/mink, I ran into an issue with filling out text fields not belonging to forms while executing the test case. For example, if I had an ...
2
votes
5answers
64 views

If-Else statements vs Exception-Catcher?

I got tired of adding seemingly endless if-else statements into my code, so I wondered if it would be better practice if I'd just catch Exceptions if something wasn't right. Eg. instead of saying: ...
0
votes
1answer
12 views

Unit test exception-messages formatted with sprintf

How can I test if an exception throws the expected error message, when I format my error messages like this: throw new \Exception(sprintf('Random string: "%s".', 'blablabla')); Obviously testing ...
0
votes
3answers
40 views

how to handle exceptions in junit

Hi I am writing test case to test some method. But method throws an exception. Am I doing it correctly? private void testNumber(String word, int number) { try { assertEquals(word, ...
-1
votes
4answers
34 views

php Exception By getting a class that might exists

i try to make a function that load classes that are in the array. but it can be the case that the class don't exists, in that case i want to get an error string that an be places on that place and if ...
3
votes
4answers
42 views

When to throw exceptions for constructor

public Neocortex(Region rootRegion, ConnectionInterface functor) { this.rootRegion = rootRegion; this.currentRegion = this.rootRegion; this.functor = functor; } Hey above I have the constructor for ...
0
votes
3answers
33 views

Throw an Exception When a JFrame is Closed

I would like to throw an exception whenever the user closes a window, but I'm not sure if this is possible. Here is some code of what I would like to do: import java.awt.event.*; import ...
-2
votes
3answers
75 views

Why does Java have to throw a Concurrent Modification Exception? [closed]

I would like to know about Java's iterators. Why are they designed to throw Concurrent Modification Exception? In C++ STL, you can iterate over a container and modify stuff as you go but why can't you ...

1 2 3 4 5 268