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. ...
2
votes
2answers
24 views
How to propagate an exception across SOAP Web Services?
I have a standard ASMX web service. I want to throw a custom exception and have it be caught on the client side. The only thing that ever comes across is a SoapException. Example:
// Server side ...
1
vote
2answers
36 views
NAO Robotics student compile error: Can't load IA 32-bit .dll on a AMD 64-bit platform
I am a teacher working with students on the NAO robot in Java. We are using Eclipse. This error pops up anytime a student attempts to compile their program:
Exception in thread "main" ...
0
votes
1answer
85 views
Exception before the program starts c#
I have a project that runs fine, everything loads, runs and completes, this is only when i set visual studio in Debug mode, when i switch to Release, all hell breaks loose.
The program does not even ...
1
vote
5answers
69 views
NullPointerException in booking app
I'm getting a NullPointerException at:
If(bookingList.size() == 0)
,
bookingList.add(vehicleBooking)
and
bookingList.add(rvBooking)
And i am not sure what is causing it. Any help is much ...
2
votes
4answers
71 views
Why is SQLException a checked exception [closed]
Can anyone think of a rational reason why SQLException is a checked exception?
Yes, there could be a syntax error in the query
Yes, the connection might have died
Yes, there might be a permission ...
1
vote
1answer
19 views
Creating new Exception classes, new arguments
I am writing some new code in which I want to use some self defined exceptions. For instance TableCreationFailedException. Since I'm using PHP the base class this is deriving from is the Exception ...
0
votes
1answer
14 views
Rails Article.find 1 raises ActiveRecord::StatementInvalid on legacy database
I'm creating a rails app over a legacy database table. Everything works fine locally, but on the server I hit this error whenever I do Article.find(1)
Could not log "sql.active_record" event. ...
10
votes
1answer
284 views
C++11 Exception's destructor allows to throw now?
any idea why
virtual ~exception() throw() is in C++98,
but
virtual ~exception() is in C++11?
What's the design decision that allows C++11 to throw in the destructor of the class exception?
From ...
0
votes
0answers
18 views
Creating a Uri in Plugin Project does not work
I have a little propblem, hope someone can help.
My following code leads to a exception:
Resource resource = resSet.getResource(URI
.createURI("/"+CreateText.getPath()), true);
Note: ...
1
vote
0answers
26 views
How to send manually exceptions to NewRelic (Ruby)?
How I can send rescued exceptions to NewRelic ?
I have a test file rpm.rb:
require 'newrelic_rpm'
NewRelic::Agent.manual_start
begin
"2" + 3
rescue TypeError => e
puts "whoa !"
...
0
votes
1answer
18 views
workarounds for BOOST_THROW_EXCEPTION's missing ternary operator in initialization lists
I often end up using ternaries that throw exceptions which may seem a bit weird but save the day in initialization lists (hence that helps for writing sound constructors, hence that helps for RAII, ...
1
vote
4answers
81 views
C# exceptions and code breaking
I have a method called TryMe which has try catch block and catches his exceptions.
I call him from another class, but when an exception occurs it doesn't stop the code execution.
Example:
public void ...
0
votes
1answer
22 views
Enumeration Type exception when attempting to filter a LINQ query
I'm trying to generate a grid that end-users can filter the data using several inputs.
To do this I'm attempting to filter an initial LINQ to Entities object as follows:
Dim servhist As ...
0
votes
0answers
10 views
Getting a transaction is indoubt exceptions
I have the following stack trace:
at
System.Transactions.TransactionStateInDoubt.EndCommit(InternalTransaction
tx) at System.Transactions.CommittableTransaction.Commit() at
...
0
votes
1answer
39 views
Run rake db:drop without failure if database doesn't exist
This comment says:
db:drop can run without failure when db does not exist
This is exactly what I need: I need to run db:drop but without throwing an exception or halt my whole process if the ...
0
votes
0answers
43 views
Fatal Exception : Main andoid
With my friends, we're working in a project and for it i need to create an andoid application. (i specify, i'm a beginner at programming in java)
So to start i've follow a good tutorial ...
-1
votes
2answers
37 views
warning instead of php exception?
I have this piece of code:
try
{
foreach($obj_c->getGalleries($db_conn1) as $gallery)
{
$gallery->Save($db_conn1);
}
$k = 0;
...
0
votes
3answers
33 views
Unhandled Exception, writing information to a file C language
this is what i'm trying to do,
I have a file with information in it. I'm trying to rewrite it so before every line, the number of the line will appear.
The basic idea i have in mind works like this:
...
0
votes
0answers
32 views
Calling functions on Entities from a Context in C#
I have started with model-first and generated a database, and I've created partial classes for my entities so that I can perform operations on them.
My code in the context is getting fairly long, is ...
0
votes
0answers
21 views
DOM Exception with JQuery Disables Debugging
I created the world's simplest HTML file:
<html>
<head>
<script type="text/javascript" src="jquery-2.0.0.min.js"/>
<script type="text/javascript">
function boing()
{
...
0
votes
0answers
17 views
Out of memory exception in CreateGraphics (GdipCreateFromHWND)
on certain machines that vary in configuration (OS, graphics card and memory) I get an OutOfMemory exception. Some tests showed that there is no significant increase in virtual memory consumed. That's ...
4
votes
3answers
69 views
Issue with DateTime.ParseExact method: always throws exception even with correct format
I have searched the forum for solutions like this, however I did not find one that actually matches my particular issue.
This might be in need of a more experienced eye in order to find the problem, ...
1
vote
1answer
63 views
Error when connecting to local HBase
I'm trying to connect to HBase installed in the local system (using Hortonworks 1.1.1.16), by a small program in Java, which executes the next command:
HBaseAdmin.checkHBaseAvailable(conf);
It is ...
0
votes
1answer
32 views
InitializeComponent - AccessViolationException
I'm working on a Windows Store Application and I've run into a problem.
I left my computer with a fully functionally program with no errors.
After a couple of days away from the computer I started it ...
1
vote
3answers
95 views
Using Exceptions in Normal Code Flow
I know that you shouldn't use exceptions for non-exceptional conditions, but I wanted to run this past others to see if what I'd like to do is really that bad.
I have a routine that is attempting to ...
0
votes
1answer
48 views
how to implement try catch blocks on linq queries that return dynamic types?
first of all I want to know if its necessary to have linq statements that access the DAL in try catch blocks so you can input the errors into a log. secondly I have the following code, but as you can ...
-1
votes
0answers
39 views
Getting “TypeError - singleton can't be dumped” when trying to Marshal.Dump a Class without singletons
I've run into a problem when trying to Marshal one of my Ruby classes.
Marshal.dump raises a "TypeError - singleton can't be dumped" exception although as far as I can tell, nothing in the class has ...
1
vote
1answer
38 views
FaultException handling in client?
I'm trying to implement exception handling in a WCF service.
I want this exception to be thrown to the client so it can be logged and handled.
I don't know if the code I've written is right or wrong.
...
0
votes
0answers
50 views
wicket unit testing : strange behaviour of startPage(Page page) and startPage(Class<Page> pageClass)
I got some strange behaviour of my unit tests.
My simple Page looks like:
public class RegistrationPage extends BasePage {
public RegistrationPage(IModel<Service> model) {
...
0
votes
1answer
33 views
why is EOFException used mainly by data input streams?
From Java API
public class EOFException extends IOException
Signals that an end of file or end of stream has been reached
unexpectedly during input.
This exception is mainly used by ...
0
votes
1answer
35 views
Exception on 2D Array
I need some help here. I'm trying to let the user to create the infrastructure if the user give the correct name from the list of infrastructure that is already been there and give use the value ...
1
vote
1answer
52 views
Databinding menu items fails at run-time
I have a MenuItem where the ItemsSource property is databound to an ObservableCollection like so:
<MenuItem x:Name="RecentItems" Header="Recent" ItemsSource="{Binding Path=RecentItems}" ...
1
vote
4answers
80 views
Unexpected exceptions in Java Unit tests
I'm really a newbie to JUnit and unit testing in general and I'm struggling to find the right approach. What is the better way to deal with unexpected exceptions, and why?
Method A:
first catch the ...
0
votes
2answers
53 views
Unwanted quotes exception in String in Python
Lets say I want to print exactly this: text \" text2.
The best output I can take is: text " text2.
Is there any way to put the above text in a string exactly as it is?
0
votes
0answers
15 views
Oracle ODP connect
I downloaded and intalled ODAC 64 bit version.
I have a .net 4.5 application, I add the reference to Oracle.DataAccess and my application compiles Ok.
However, at run time, I have the following ...
0
votes
1answer
21 views
NPE while populating listView with JSON
public class DisplayServiceActivity extends ListActivity {
private ListView listOfServices;
//JSONArrays?
JSONArray directory = null;
//JSON Node names
private static String TAG_ID = "id";
private ...
-1
votes
4answers
52 views
overriding a method that throws Exceptions, help to understand the behaivor [closed]
I'm preparing for a test in java.. and we're looking at a code that we cant understand.
i got 2 classes A,B like this.
public class A
{
public A()
{
System.out.println("constructor ...
6
votes
3answers
84 views
Reason for ClassNotFoundException to be a checked exception
What is the reason behind ClassNotFoundException being a checked exception?
I've been guessing and googling trying to understand why consider class not found as checked exception, because all my mind ...
0
votes
1answer
30 views
SmtpFailedRecipientException not showing the complete message text
Sending mails via (new SmtpClient()).Send(msg) get me a SmtpFailedRecipientException with message "Mailbox unavailable. The server response was: 5.7.1 Unable to relay", not showing me the rest of the ...
3
votes
3answers
52 views
Exception that throws another Exception
I have a CustomException class, that is a wrapper on top of Exception class. This is the main class that i use when i handle Exceptions.
public class CustomException : Exception
{
public string ...
2
votes
1answer
29 views
Push Registry unregister Connection
I'm working with J2ME application, that works to send/receive sms from specific port. Somehow I made some mistake with the code and make the application goes error. When I already solve the error the ...
-2
votes
0answers
14 views
How to store catch block rasied exceptions in mysql table? [closed]
I create one table in MySQL for store Exception details..If i run my application,if any exceptions raised,the exception details display on the console....k,But i want to store the same exception ...
2
votes
2answers
52 views
Stop a main thread from child thread
I am writing a python program, In main function I am starting a thread which runs continuously. After starting the the thread the main function enters a while loop where it takes user input ...
2
votes
3answers
53 views
What is the good practice to terminate program in catch clause
I have a method throws an Exception
public int myMethod throws Exception
I have another function calls myMethod function and hava try-catch block.
I throws a runtime exception to enforce the ...
-1
votes
0answers
20 views
Timeout prior to obtaining a connection from pool in a custom handler (C#) with mysql .net connector data driver
I'm in trouble with this issue (logged with log.net) in my custom handler:
MySql.Data.MySqlClient.MySqlException: error connecting: Timeout expired. The timeout period elapsed prior to obtaining a ...
-3
votes
1answer
67 views
Exception of type 'System.OutOfMemoryException' was thrown. after page load in asp.net c# [closed]
I have a web form in asp.net that every time I try to access it, it throws the following exception
Exception of type 'System.OutOfMemoryException' was thrown
It does enter the page load and finishes ...
-5
votes
0answers
12 views
In Java, what do the following commands do? [closed]
Sorry for asking this, but this stuff was not in my textbook anywhere.
1) java.io.file MyFile = new java.io.File("c:/chapter8g.java);
2) System.out.println("Does it exist?" + myFile.exists());
3) ...
0
votes
0answers
21 views
TransactionScope; how to commit after an exception occured
I am retrofitting a somewhat complex program. There are hundreds of UI's which may use reflection to invoke lists of methods. Some methods call essentially 3rd party DLL's. Some DLL's throw ...
2
votes
0answers
44 views
C# exceptions global handler under interop scenario
First of all I am going to explain the scenario. We have a Visual C++ application with some C# projects and with some wrapper projects (managed C++) to get interoperability.
We need to be informed in ...
4
votes
4answers
235 views
Is it better using a guard clause or catching the exception? [closed]
is it better to prevent exception with a guard clause or catch the exception?
There is a best practice?
Pro and cons of the two methodologies?
For example is better this:
try{ param=myArray[3];}
...




