Programming language constructs designed to handle errors signaled by error codes, exceptions or other language specific means.

learn more… | top users | synonyms

4
votes
2answers
30 views

How to continue function when error is thrown in withCallingHandlers in R

I'm writing a test case for an R function that tests whether an error is being thrown and caught correctly at a certain point in the function and I'm having some trouble getting the test to continue ...
0
votes
1answer
7 views

Debugging in WordPress

How can I turn on debugging and error log in WordPress? I am new to WordPress and would like to see how this could be done. I set define('WP_DEBUG', true); in wp-config.php but this is not helping. ...
0
votes
3answers
27 views

How to Handle Nil Errors in Rails?

What is the correct way to deal with nil errors in Rails? I often get errors like: NoMethodError (undefined method `questions' for nil:NilClass): For example, let's say I have chapters in my ...
0
votes
1answer
16 views

Rescuing an ActiveRecord::RecordNotUnique in Rails 3.2

I am new to ruby and I want to ensure that the combination of three columns in a model will be unique. I tried using validates_uniqueness_of with scopes but it didn't work as intended. So i added a ...
0
votes
0answers
15 views

Could not find class 'org.apache.http.entity.mime.content.Filebody', referenced from method

What I'm trying to do is to send a picture to a web server. When I call a method in my Android project I get the following error: could not find class 'org.apache.http.entity.mime.content.Filebody', ...
9
votes
4answers
54 views

Error handling with next in Try::Tiny catch block

The following code (a simplified example, I'm actually iterating over a list of objects and trying to trap an exception) performs error handling by going to the next item in the for list. It works, ...
2
votes
4answers
65 views

Error handling: Exceptions vs Error method

I'm creating a 3-tier app and I have a problem dealing with error handling. I don't know if I should throw an exception or call a method to communicate the problem to the other layers. Here is a ...
0
votes
0answers
24 views

How to check if Command mkdir Failed?

How can we check if command "mkdir" have failed in Shell Script. The return value is same i.e 0 for both successfull and error condition. I encounter this issue while creating directory on read only ...
0
votes
2answers
32 views

invoke error when trying to exit program

I have this code restart: mov edx, OFFSET prompt5 call WriteString mov edx, 0 mov edx , OFFSET buffer call ReadString cmp ...
-2
votes
1answer
47 views

No matching function call in C++

I'm getting the error of 'no matching function call' any ideas as to why? Thanks in advance. #include <iostream> #include <string> using namespace std; void redactDigits(string & ...
0
votes
3answers
23 views

handle error pages using PHP and htaccess

I want put some codes like below in my htaccess file: ErrorDocument 403 /error/403 ErrorDocument 404 /error/404 ErrorDocument 500 /error/500 ... and have a PHP file which handles the error pages ...
0
votes
1answer
22 views

Redirect error in php login system

So i made a simple login page, but im having a problem with the index.php page. It gives me a redirect error. Im a newbie in php coding. Hopefully someone can help me with this. <?php ...
0
votes
3answers
31 views

How can I make a program finds it&#39;s own location to save and read a file?

I'm trying to write an xml file and attach it to an email. It works great if I give it a path to my personal documents folder(i.e. C:\users\myname\Documents\Test.xml), but if I try to change it to ...
0
votes
1answer
35 views

Spring Rest ErrorHandling @ControllerAdvice / @Valid

I'm having trouble when Using @ControllerAdvice and @Valid annotations together in a REST controller. I have a rest controller declared as follows: @Controller public class RestExample { ... ...
-2
votes
0answers
32 views

.NET - Application has generated an exception that could not be handled

I have a .NET/WPF process that shows a popup when the OS is shutting down. It happens 50% of the time. When windows is shutting down (and the .net application is running), then this message displays ...
0
votes
0answers
32 views

Error handling with ASP.Net

For an assignment I have been asked to answer the following related to ASP.NET MVC: “In anything but the simplest of cases your application will contain errors. You should identify where errors ...
0
votes
1answer
18 views

vegdist error message in Vegan package

I'm trying to perform an NMDS in R using the vegan package on a data set that has plots as columns and species counts as columns. My data is in the format of a text file (tab delimited) and contains a ...
0
votes
1answer
46 views

[C#]Doesn't insert in DB, does give a executenonquery of 1

I am busy with a project in which I have to insert some data in a compact SQL db file which is created in Visual Studio 2010 express. Every check I do says the insert is being done properly, only one ...
0
votes
0answers
27 views

PHP error message default HTML box replace

I'm developing web app I recently moved from localhost to an online web server, so I don't have access to the php.ini configuration file. The problem is that my site has some absolute divs that ...
2
votes
3answers
398 views

Error installing any ruby version with RVM on OSX

Guys I'm about to kill myself with this one! I had some problems with RVM installing multiple versions of Ruby, and following a thread on Stackoverflow I decided to remove it completely. After ...
0
votes
2answers
21 views

file_put_contents() to log errors works fine - EXCEPT for fatal errors

So I figured out how to generate my own PHP error handler and record all errors in a log file - not visible to the user. I even made a second log file, that only records UNIQUE errors. Now I figured ...
0
votes
3answers
85 views

How to avoid returning NULL on error if it has to return something? (in C) [closed]

I've stumbled on articles that says its good programming practice to never return NULL. But for functions that need to return something, what should it return? a value of -1 is not going to cut it ...
1
vote
0answers
31 views

How does module_eval / class_eval / instance_eval counts the line numbers

I have found the line_number passed to class_eval, module_eval and instance_eval doesn't match the line numbers reported by the error. This behaviour is not explained by the ruby-doc which says: (use ...
2
votes
2answers
53 views

Why is kernel_required.rb in my stack trace?

I forgot to put the word end, at the end of a if statement, and got the following error: /home/***/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/site_ruby/2.0.0/rubygems/core_ext/kernel_require.rb:45:in ...
-6
votes
1answer
40 views

What should I do if an exception is not caught? [closed]

protected void btn_save_Click(object sender, EventArgs e) { try { obj_grp.grp_ID = Convert.ToInt32(txt_grpid.Text.Trim()); obj_grp.grp_NAME = txt_grpname.Text.Trim(); ...
0
votes
0answers
19 views

Catch ActiveX Control Exception (prevent program stopped working)

I use an ActiveX control (qlickview ocx) on my form and it work well but sometimes (on close form OR reopen a document in the control) my application will be hang with this windows message: ...
0
votes
1answer
35 views

Constructor failed to take input arguments [closed]

I am new to Python. I had been following online tutorials about python classes but I get a strange error. I can't figure out what worng have I done. Below is my code: class StudentData: "Contains ...
1
vote
4answers
63 views

Checking for incorrect input inside properties in C#

I am using properties to allow a single string name to be added to the class Details, I want the property to only accept the string if it can be split into two parts. The two parts would be the ...
0
votes
2answers
36 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(); ...
1
vote
3answers
46 views

Any “real-life” nested exceptions that are easy to intentionally cause in C#? [closed]

I'm playing around with improving my error handling, and also learning nLog. I'd like to be able to cause some "real" errors to test what my error handling is doing. Are there any that are easy to ...
0
votes
3answers
31 views

PHP will not report errors

I feel this is weird but I cannot seem to get php to report errors. I am making a class to check and format some results outside of a CMS to allow greater filter ability without having to create a ...
0
votes
0answers
11 views

PHPunit won't display syntax errors - how to fix

In my code, not the test, but the actuall class I am testing there is an if{ no closing } PHPunit just crashes without telling what went wrong. How do I configure it to show me the errors that it ...
0
votes
0answers
8 views

Detect php SQLite3 “not an error” exceptions

I'm using the SQLite3 libraries for unit testing a DB migration management tool. I seem to have discovered a flakey scenario though. The SQLite3::query() function is throwing an exception in the ...
1
vote
1answer
22 views

JSLint error: Expected 'ignore' and instead saw 'ex'

I use JSLint all the time, but just today, I came across an error that I've never seen before. With the following code, I got the error shown below: try { ...
0
votes
2answers
23 views

Apache: .htaccess ErrorDocument up one level?

my site structure like this: - pages 404.php 403.php - app /css /-script index.php .htaccess in my .htaccess if I type ErrorDocument 403 /403.php and put 403.php inside ...
1
vote
2answers
36 views

500 internal sever error While referring a file in PHP?

I am facing a problem 500 internal server error while referring a file through PHP Here is my code <?php require_once(dirname(__FILE__).'/html2pdf.class.php'); ?> Here I am having the class ...
3
votes
2answers
56 views

Handling C Read Only File Close Errors

I'm doing some basic file reading using open, read, and close (Files are opened with access mode O_RDONLY). When it comes time to close the file, I can't think of a good way to handle a possible ...
-2
votes
0answers
10 views

Getting runtime error regarding ExchangeMail.exe in asp.net app [closed]

I'm working on asp.net application and sometimes after I guess because of time out I'm getting below error. could any one help me to know more about this error ? Why is it there ? Application: ...
0
votes
1answer
13 views

facebook publish_action - check if skip pressed

I want to use the Facebook publish_action permission to post on user's timeline. This presents a page which asks for permission and there are 2 buttons Okay and Skip. However when I test both ...
0
votes
1answer
30 views

Android Webview - HTTP Error 504 Gateway timeout

I have android app that used webview to display Google App Engine web app. How to overwrite the default HTTP Error 504 Gateway timeout encountered in my app? HTTP Error 504 Gateway timeout The ...
0
votes
2answers
55 views

How to handle errors from web service

Sorry I am new to Spring and Java and this may be covered lots of times but I wanted to get some advice. I'm creating a Spring web application which needs to retrieve user data from an existing REST ...
0
votes
0answers
15 views

Simple JQuery function for checking all inputs for data and highlighting errors

First off, the following function does actually work. What the function does: The below JQuery function checks a general form on the page (or you can target a form with an ID) and checks to see if ...
1
vote
2answers
26 views

Dealing with network errors in Chrome + Backbone

I have a simple backend - Php RESTful API When data is not available for specific parameters (for instance, a date and company_id) - we return an error (say 401) along with a message In Backbone, ...
1
vote
1answer
17 views

Returning an error without throwing an exception with servicestack

From what I know, exception throwing can be a little heavy. I can see that ServiceStack's Error handling suggests throwing an exception, which gets beautifully serialized to the client side. 1. How ...
1
vote
3answers
46 views

IIS responses with HTML instead of JSON on ASP .NET MVC3

The subject is selfexplanatory. I've developer and production environments. Developer env. is my localhost machine. I've action methods in contolers that sets response status code to 500 when ...
1
vote
2answers
45 views

What is the vbError returned by VarType in VB6?

I have been searching for this all over the web, but everything is either talking about the ErrObject class, or the constant vbError returned by the VarType function. I want to know what that type ...
0
votes
1answer
42 views

I'm getting runtime error for asp.net application, is it timeout issue?

I'm getting this runtime error sometime when I try to use asp.net application. I'm getting this error when my browser windows is open for long time and I does not work on this.. might be server time ...
0
votes
1answer
21 views

Get error of XSLTProcessor

I would like to get transformation errors. Here is my code: var xsltProcessor = new XSLTProcessor(); xsltProcessor.importStylesheet(xsl); var resultDocument = xsltProcessor.transformToFragment(xml, ...
1
vote
0answers
26 views

PHP on WAMP SERVER - Errors at PHP script

I have a WAMP server on Windows 7. I have a php code like : <html> <head> <script> var myvar; <?php include "myotherphp.php" ?> <!-- this put single line, like ...
0
votes
2answers
48 views

Generating error message for empty database query in PHP

The following code's purpose is to get an input (from a separate HTML file) for the customerID in a database from the user and then display the order number, order date and shipped status for that ...

1 2 3 4 5 111