exception

SQLite 3 - JDBC driver throws "ResultsSet Closed" exception on empty resultset

I a problem in JDBC driver for SQLite. I am executing a query with SELECT statement. If I get an empty resultset (0 rows) then I see a "Closed ResultSet" exception thrown when checking GetString(1). Without much prior JDBC experience, my theory (which I could not confirm via JavaDocs for ResultSet) is that GetString(1) does NOT work...

[ASP.NET MVC] What would cause a partial view to suddenly not be found?

I'm baffled. My site randomly throws the following error: System.Web.HttpUnhandledException: Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> System.InvalidOperationException: The partial view '/SiteUserMenu' could not be found. The following locations were searched: /SiteUserMenu at System.Web.Mvc.HtmlHelper.Fi...

How do I get the cause of a WCF Client Faulted Event?

Hi everyone, How do you get an exception or error code that caused a WCF Client's Faulted event? private void ConnectionFaultedHandler(object sender, EventArgs e) { // Darn! Something went wrong. // Better clean up. this._Connection.Abort(); this._Connection.InnerChannel.Faulted -= this.ConnectionFaultedHandler; /...

Can I make AASM run a specific method on event fail?

Is there a nice way to tell AASM that if an exception is raised while processing any assm_event I want that error to be caught by a specific block of code? eg currently I do something like assm_state :state_1 assm_state :state_2, :before_enter => :validate_something assm_state :failed assm_event :something_risky do transition :fro...

Attaching mdf file into sql server

Earlier mdf file was in app_Data folder, and application was working fine. When I attached mdf file into sql server. I can execute queries. But when I try to use it from asp.net application it give following exception. Cannot open user default database. Login failed. Login failed for user 'domain\username' ...

EventLog permission failing in ASP.Net on Win7

I have an ASP.Net app .net 3.5 SP1, running in Win7 . During the login process, something within the ASP.Net login control is causing a write to the security log (this sounds acceptable to me) in the event log. The problem is that it seems the app doesn't have permission to do this. There error is: Description: The application attempted...

Delphi 6 stack trace

Possible Duplicate: GetStackTrace in Delphi 7? Does anyone know how to get a nice friendly stack trace into a string when an exception is raised in Delphi 6? ...

ASP.NET UpdatePanel Exception Handling

Where exceptions occur in the UpdatePanels I've implemented in the ASP.NET web app I'm building, they cause a JavaScript error on the page with some high level error output available in the alert. This is OKish for development, but as soon as the system is in Production, it's obviously no good for multiple reasons. I can surround trouble...

Regex with exception of particular words

Hi everyone, I have problem with regex. I need to make regex with an exception of a set of specified words, for example: apple, orange, juice. and given these words, it will match everything except those words above. apple (should not match) applejuice (match) yummyjuice (match) yummy-apple-juice (match) orangeapplejuice (match) orang...

Java, ASM org.objectweb.asm.util.CheckClassAdapter causes Unsupported major.minor version 0.0

Hello! I am getting following exception: java.lang.UnsupportedClassVersionError: net/sourceforge/barbecue/BarcodeException : **Unsupported major.minor version 0.0** at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:621) at java.lang.ClassLoader.defineClass(ClassLoader...

Silverlight 3 WCF Service `CommunicationException` Server returned error: NotFound

I have a Silverlight 3 application, which 95% of the time is successfully requesting data from a WCF Service (in the same webapp) and displaying it. This happens infrequently, usually if I hit the service a bunch of times quickly, but sometimes it'll happen on a single lone request. Every once in a while, if I request a lot of transac...

Exception handling help

Hi All, I have written and tested a WinForms application and everything works fine on my machine (cliche, I know). When I created a setup project and installed it on a co-worker's machine, he receives the following message: ************** Exception Text ************** System.IndexOutOfRangeException: There is no row at position ...

not preparing insert query

if (insert_statement == nil) { static char *query = "INSERT INTO iteminfo (itemname, friendid) VALUES(?,?) where itemid=?"; if (sqlite3_prepare_v2(database, query, -1, &insert_statement, NULL) != SQLITE_OK) { NSAssert1(0, @"Error: failed to prepare statement with message '%s'.", sqlite3_errmsg(database)); } i am new to Objective ...

What line(s) this code might throw a "Index was outside the bounds of the array" exception?

A little background on this error: The customer getting this error message in their log file and support hasn't been able to reproduce it yet. So I'm reviewing the code trying to determine what may be happening. I have narrowed it down to this section of the code by reviewing their log file. I didn't write this code, but it's purpose...

Do potential exceptions carry an overhead?

Will a piece of code that potentially throws an exception have a degraded performance compared a similar code that doesn't, when the exception isn't thrown? ...

exceptions across module boundaries in C++/CLI

Item 62 of Sutter and Alexandrescu's book "C++ Coding Standards" is "Don’t allow exceptions to propagate across module boundaries." Should we follow the same rule in C++/CLI? ...

The right time to handle all exceptions

I've done a few projects so far, and i've noticed that every single one i've written entirely without any exception handling, then at the end I do a lot of tests and handle them all. is it right? i get thousands of exceptions while testing (which I fix right away) that if i've handled it i wouldn't see exactly where it is(when not usi...

Can I use the .Net CF unhandled exception dialog to display and exception that was caught?

In my .Net 3.5 Compact Framework app I recently added an unhandled exception handler. I did it just so I could add the error to our log file and reboot the system. In certain modes I want to display the error to the user. I find that the messagebox is far inferior for error display than the dialog the CLR would use if I didn't catch th...

Handling Multiple Exceptions within a Method

I am currently working on the maintenance of a piece of code that is a little bit "Exception Happy." Basically, ever method or anything throws Exception. I'm going to work to take care of that, but, in the meantime, I am wondering what is the best way to handle individual exceptions within a smaller block of code, such as a method. Is...

Override fillInStackTrace for control flow / performance.

Note: although seemingly similar, this is not a duplicate of http://stackoverflow.com/questions/1520859/overriding-fillinstacktrace-for-a-standard-jvm-exceptions What are your thoughts on overriding fillInStackTrace on checked exceptions to return null? The advantages are: you can use said exception for control flow without the perfo...