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. ...
12
votes
0answers
108 views
WCF ExceptionShielding Error ID does not match up with handlingInstanceId passed to Handler
I have the following decorated on my service
<ExceptionShielding("MyExceptionPolicyName")>
when a fault exception is thrown, my policy picks up the error and logs in just fine. It takes the ...
5
votes
0answers
332 views
Bad notification posted from package Couldn't expand RemoteViews
I have a problem. Some times my service get force close with this logcat:
03-26 20:44:44.849: E/AndroidRuntime(12080): FATAL EXCEPTION: main
03-26 20:44:44.849: E/AndroidRuntime(12080): ...
5
votes
0answers
758 views
android.mk arm-linux-androideabi-g++ exceptions and __cxa_allocate_exception
I am rebuilding Android from source (to flash onto a device, right now using emulator), trying to add a single command line tool. I've put my source in repo/exernal/... and written Android.mk.
I get ...
5
votes
0answers
371 views
The parameter is incorrect. at MS.Internal.XcpImports.MethodEx(IntPtr ptr, String name, CValue[] cvData)
On Wp7 when the user presses the Start button on a page when the phone keyboard is displayed and hits device back button the app crashes with Exception as :-
The parameter is incorrect.
at ...
4
votes
0answers
78 views
Which errors to handle in clojure REST+disk-I/O app?
I have a server application which, somewhat simplified, periodically takes measurements via a rest-api from a not beefy-enough-server. The values should be cached locally (and are ...
4
votes
0answers
351 views
Android - Https connection to a .NET WCF Service gives SSLException: “No peer certificate”
[SOLVED] - See below
I've been getting an exception when trying to get some JSON data from my REST enabled WCF Service, in Android 2.2 over a HTTPS connection . I then noticed something very strange ...
4
votes
0answers
164 views
Hitting error: An instance of IControllerFactory was found in the resolver as well as a custom registered provider
We are hitting the following error in some of our environments, seemingly after the app pool recycles.
An instance of IControllerFactory was found in the
resolver as well as a custom ...
4
votes
0answers
771 views
iOS5: How to prevent exception for rectForRowAtIndexPath method
Exception:
request for rect at invalid index path
Code:
CGRect rect = [tableView rectForRowAtIndexPath:[NSIndexPath indexPathForRow:i inSection:0]];
Fix:
if ([tableView ...
4
votes
0answers
649 views
Translating PersistenceException to DataAccessException in Spring with EclipseLinkJpaDialect
Hallo.
I have the same issue explained here
The main difference is that I use EclipseLink as JpaProvider.
So I configured my entityManagerFactory as below:
<bean id="entityManagerFactoryCont0" ...
3
votes
0answers
111 views
Intended change in behaviour with cypher in Neo4j 1.9.M02-M05?
Is that a known issue, and/or intended behaviour in Neo4j 1.9.M02-M05 that you cannot delete nodes and relationships from cypher queries outside a transaction anymore?
The following example code does ...
3
votes
0answers
31 views
Strange MIPS AdES exception
I am giving very limited information, I know, but it is probably enough.
System specs: MIPS 64-bit processor with 8 cores running 4 virtual cpus each.
OS: Some proprietary Linux based on the ...
3
votes
0answers
88 views
android outofmemory while reading epub file
In my application i am reading epub file when big size epub is reading it's give me can any one help me about this:
Error:
02-01 09:25:06.814: E/AndroidRuntime(26698): FATAL EXCEPTION: Background
...
3
votes
0answers
299 views
WebClient.DownloadString gives first chance exception
A call to WebClient.DownloadString gives a first chance exception:
IOException: The specified registry key does not exist.
For some time now I'm recieving first chance exceptions running our ...
3
votes
0answers
993 views
Hibernate throws org.hibernate.persister.entity.SingleTableEntityPersister
I am using JBoss AS 7 with H2 database.
I have a standalone application that tries to connect to this database like this.
My config file:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE ...
3
votes
0answers
502 views
Embedded Jetty Throws EofException and SocketException
I have an embedded Jetty Server(with basic authentication and SSL). When it starts to run everything is OK. Response time is at milliseconds. However after a time later response time increase to 10 ...
3
votes
0answers
147 views
WSO2 Identity Server - LDAP working in read-only mode but is set to false
<Property name="ReadOnly">false</Property> - this is set in usr-mgt.xml in my identity server.
When I try to invoke the method for setting user claim value - ...
3
votes
0answers
516 views
Eclipse EGit Committing fails - Caused by: java.io.EOFException
Details of the error are below. I have just installed on a new Windows 7 machine and am getting this error on any commit done in EGit. I can successfully commit using the Git Bash shell. I checked ...
3
votes
0answers
248 views
Android 2.2 exception handling, catch argument null
I'm wondering if anyone came across an odd behaviour.. I have try/catch block, where catch statement assigns an exception variable to enable me to handle exception properly.
What I get is ex = null ...
3
votes
0answers
165 views
Inspect variables after exception in Python/Pydev/Eclipse
Can I inspect variables on the stack after there is an uncaught exception in Python/Pydev/Eclipse? I'd like to go back in stack levels and see the local variables.
I suppose there are ways to hack ...
3
votes
0answers
124 views
Provider class in healthMonitoring gets inner exception
We have Health monitoring setup for our applications. We have been facing a strange issue for some time.
When an unhandled exception in thrown in our web applications, it gets captured by the ...
3
votes
0answers
278 views
monodevelop and nunit integration
I use MonoDevelop from several years but I'm now having problem with NUnit plugin.
I've started a new simple project with few tests... The binary is tested without problem from nunit-console, but ...
3
votes
0answers
140 views
listener.d: crashes upon unclean disconnect
For a small chat server thingie I'm making, I decided to use D; finding myself
with a very neat example from listener.d to get a kick start I decided to
pretty much take the example over! However, ...
2
votes
0answers
32 views
How to save a dump, including local variables, after an unhandled exception occurs in TPL?
My idea of handling exceptions is as follows.
When an unhandled exception occurs, I want to save a dump with full memory, including local variables available at the line where the exception happened. ...
2
votes
0answers
76 views
System.Runtime.InteropServices.COMException caused while terminating the app
I have an app with 2 pages calendar.xaml(start page) and historystatistics.xaml. Error is thrown when I navigate to historystatistics and back to calendar and then try to terminate the app by the ...
2
votes
0answers
48 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 ...
2
votes
0answers
61 views
How to organize a Python module with lots of constants and exceptions?
I'm writing a Python module that has only about twenty interesting types and global methods, but lots of constants and exceptions (about 70 constants for locales, 60 constants for encodings, 20 ...
2
votes
0answers
89 views
Script stops on specific command without go into catch block
I have a powershell script with PowerCLI commands to install and configure virtual machines.
These are the settings in the environment
Windows Server 2008 R2
ESX 4.1
PowerShell v2
PowerCLI 5.1
...
2
votes
0answers
87 views
WPF unhandled exception handler and preserve call stack
I have a WPF application and I need to write a mini dump file whenever my application encounters an unhandled exception for help with debugging. However, every time the exception handler is called, ...
2
votes
0answers
83 views
ExecutionEngineException in Windows Phone device during navigate to a page
I have a error of class ExecutionEngineException. When I navigate to page:
private void FriendsMainTxt_Tap(object sender, System.Windows.Input.GestureEventArgs e)
{
...
2
votes
0answers
105 views
Uncaught CURLEXCEPTION in facebook login - php sdk
Sometimes, especially, when I am not logged in Facebook, an error shows in my login page with the code pasted from the php-sdk. You can see the output at http://jnfp.tk/login.php. When I refresh the ...
2
votes
0answers
163 views
Could someone explain about large fs:0?
:0378CED0 push ebp
:0378CED1 mov ebp, esp
:0378CED3 push 0FFFFFFFFh
:0378CED5 push 3927B50h
:0378CEDA ...
2
votes
0answers
203 views
E/JavaBinder(2275): Unknown binder error code. 0xfffffff7
I'm getting this error on Android application. Any explanation?
LogCat simply write the line in red:
03-20 10:31:08.206: E/JavaBinder(2275): Unknown binder error code. 0xfffffff7
nothing else.
...
2
votes
0answers
108 views
getting Nullpointer exception not sure why
Here is the code that is being called:
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
super.onStartCommand(intent, flags, startId);
context=this;
Timer ...
2
votes
0answers
159 views
In OS X, C++ unhandled exceptions do not automatically print output of what()
Take this bit of code:
#include <exception>
int main()
{
throw std::exception();
return 0;
}
When I compile and run this with gcc in Ubuntu Linux, I get the following helpful output:
...
2
votes
0answers
69 views
Django: How to get template debug info to user on syntaxerror
I have a page where users can submit their own template into a textarea, for now it needs to be that simple. However since it is user generated input i need to verify they don't do stuff that breaks ...
2
votes
0answers
151 views
EntityManager throws OptimisticLockException when try to delete locked entity in same transaction
Here is my code:
EntityManager em = JPAUtil.createEntityManager();
try {
EntityTransaction tx = em.getTransaction();
try {
//do some stuff here
tx.begin();
...
2
votes
0answers
608 views
“No destination configuration registered” - WCF/SAP integration using SAP nCo3 (SAP .NET Connectior 3.0)
When I try to call a WCF service I developed I get this error message: "Method or operation is not implemented".
Let me explain the scenario I'm facing and them I'll give you more details, the code ...
2
votes
0answers
1k views
Jquery.min.js load exception 0x800a139e
(I modified this post to reflect comments below and now am posting error in non-mollified version.)
JQuery: /*! jQuery v1.8.3 jquery.com | jquery.org/license */
Browser: Internet Explorer (IE) v10 ...
2
votes
0answers
218 views
Configuring ObjectDataSource: Exception has been thrown by the target of an invocation
In my project in Visual Studio 2010, I'm trying to add an Object Data Source which points to one to my business services, and to bind the datasource to a datagrid (or datalist, or whatever).
The ...
2
votes
0answers
78 views
Exception guarantee examples?
I've been trying to look for examples of basic guarantees, strong guarantees, and no throw guarantees online, but I haven't found any solid examples. Could I get an example of what are basic ...
2
votes
0answers
165 views
divide by zero exception handling in Linux
I am curious to understand the divide by zero exception handling in linux. When divide by zero operation is performed, a trap is generated i.e. INT0 is sent to the processor and ultimately SIGFPE ...
2
votes
0answers
183 views
Strange and Rare ArgumentOutOfRangeException on first line of Page_Load
I have a user control that works fine most of the time for thousands of requests, but usually about once or twice a day, there is an ArgumentOutOfRangeException that points to the first line of the ...
2
votes
0answers
134 views
Operation could destabilize the runtime in ASP.NET
I am using google analyics dll files in this project. it does not give any error at local but produces this error when io deploy website to server.
[VerificationException: Operation could destabilize ...
2
votes
0answers
116 views
Can't catch ActivationException with Prism NavigationAsyncExtensions 'RequestNavigate'
I am using Prism's NavigationAsyncExtensions method RequestNavigate on an IRegion:
// Attempt to navigate to the given view
try
{
_mainRegion.RequestNavigate(viewName);
}
catch
{
throw new ...
2
votes
0answers
277 views
EBay Java Finding API - IllegalArgumentException: Not supported: indent-number exception thrown
I'm playing around with the eBay Finding API for Java, and executing a basic test search based on the tutorial included. The call completes, but a java.lang.IllegalArgumentException exception is ...
2
votes
0answers
90 views
Best practice to handle exceptions in GLUT functions
I'm following openGL tutorials from openglbook.com and trying to simulate a scenario when requested an OpenGL context is not available on the computer. My laptop opengl video driver version is 3.0 and ...
2
votes
0answers
89 views
Silverlight fault propagation and UserNamePasswordValidator
Scenario is a Silverlight client using Wcf service & custom authentication. To mitigate the 500/200 status code problem (avoid EndPointNotFound exception) I've applied the ...
2
votes
0answers
229 views
Magento API throws an exception on successful login
In C# when connecting to the Magento API, it is throwing an excepion on successful login:
// connect to the first store
_magentoService = new MagentoService {Url = ...
2
votes
0answers
172 views
Error in module: Uses clause is missing or incorrect
I am trying to create a web server application under RAD Studio Delphi XE.
When I click on New -> others. I get a dialog window with options. I choose VCL for the Web. Then, I get another dialog ...
2
votes
0answers
78 views
NSGenericException when trying to remove an object from an array in iOS
I have checked the examples of how to fix this problem but I am still facing it..
My Code is
NSEnumerator *enu= [obstacles objectEnumerator];
NSMutableArray *delete = [[NSMutableArray alloc] ...






