Tagged Questions
The raise tag has no wiki summary.
42
votes
7answers
14k views
Best practice for Python Assert
Is there a performance or code maintenance issue with using assert as part of the standard code instead of using it just for debugging purposes?
Is
assert x >= 0, 'x is less then zero'
and ...
7
votes
1answer
287 views
Don't show Python raise-line in the exception stack
This is bothering me for long:
When I raise my owns exceptions in my Python libraries, the exception stack shows the raise-line itself as the last item of the stack, this is obviously not an error, ...
6
votes
3answers
6k views
Proper way of raising events from C++/CLI?
I was wondering what's the proper way of raising events from C++/CLI. In C# one should first make a copy of the handler, check if it's not null, and then call it. Is there a similar practice for ...
5
votes
4answers
1k views
Why is raising an NSException not bringing down my application?
The Problem
I'm writing a Cocoa application and I want to raise exceptions that will crash the application noisily.
I have the following lines in my application delegate:
[NSException ...
5
votes
5answers
3k views
C#: Do you raise or throw an exception?
I know that this probably doesn't really matter, but I would like to know what is correct.
If a piece of code contains some version of throw new SomeKindOfException(). Do we say that this piece of ...
4
votes
1answer
975 views
Raising WPF MouseLeftButtonDownEvent event
I am trying ot raise a MouseLeftButtonDownEvent by bubbling it up the Visual tree
with the following code.
MouseButtonEventArgs args = new MouseButtonEventArgs(Mouse.PrimaryDevice,0, ...
4
votes
3answers
202 views
Is it OK to raise a built-in exception, but with a different message, in Python?
Is it OK to raise a built-in exception with a custom text? or to raise a built-in warning also with custom text?
The documentation reads:
exception ValueError: Raised when a built-in operation ...
4
votes
2answers
594 views
How do I keep Visual Studio from autoraising, when I activate “Focus Follows Mouse”?
I'm running VS2008 and have used SystemParametersInfo to activate "Focus Follows Mouse" and "Do not Raise On Focus." Sadly though, VS2008 (with and without SP1) doesn't honour the "Do not Raise" part ...
3
votes
5answers
88 views
How do I subscribe to raised events and printing together?
I have been working on a program that has 3 classes of which 2 of the classes have timers that repeat at different intervals and once one "cycle" of the timer is done it raises an event with a string ...
3
votes
6answers
325 views
Raising Exception in TThread Execute?
I just realized that my exceptions are not being shown to the user in my threads!
At first I used this in my thread for raising the exception, which does not work:
except on E:Exception do
begin
...
3
votes
1answer
307 views
How does ruby's rb_raise stop the execution of the c function calling it?
If you write a ruby method as a function in C that uses rb_raise, the part of the function after the call will not get excecuted and the program will stop and you will think that rb_raise used exit(). ...
3
votes
3answers
2k views
EventHandler is null
I am trying to raise a click event from User control and handle it on the containing page. The problem I have is, when I click the button 'imgstep1' on the user control, the code behind imgstep1_click ...
3
votes
4answers
199 views
Exception libraries for C (not C++)
I am rolling my own exception library for C and would like good examples to examine.
So far, I have been looking at David Hanson's:
http://drhanson.net/work/
But I know I've seen other ones ...
3
votes
2answers
3k views
Raise an event in C#
I cam across this question in a Microsoft Practice Test and get confused. Here is the question:
Which of the following C# code samples
is the proper way to raise an event,
assuming that the ...
3
votes
5answers
2k views
Raising external object's events in C#
If actions is a Panel, am I able to raise the Click event of it's parent?
I have this code at the moment, but the Click event isn't a method, so this code is invalid.
Does anyone know how I can ...
3
votes
1answer
2k views
RSpec and Open-URI how do I mock raise a SocketError/TimeoutError
I want to be able to spec out that when Open-Uri open() calls either timeout or raise an exception such as SocketError I am handling things as expected, however I'm having trouble with this.
Here is ...
2
votes
3answers
61 views
Android: display x^y
Some help please!
How can i display raised numbers in a TextView for Android.For example if you want to display some Celsius degrees you can do this:textview.setText(number+"\u2103") and your good to ...
2
votes
2answers
47 views
Is it possible to “hold” an event for later firing?
What I'm trying to do is: when the user presses a cancel button, or navigates away of the page through a link or a menu option, I check if there are unsaved changes. If so, I ask the user if he/she ...
2
votes
1answer
151 views
Raising exceptions without 'raise' in the traceback? [closed]
Possible Duplicate:
Don't show Python raise-line in the exception stack
Built in exceptions like NameError etc. give me a traceback to the point in my code where the exception occurred. ...
2
votes
1answer
272 views
get exception type in python 1.5.2
How can I get the type of an Exception in python 1.5.2?
doing this:
try:
raise "ABC"
except Exception as e:
print str(e)
gives an SyntaxError:
except Exception as e:
...
2
votes
2answers
119 views
Python: Can I overload the raise statement with def __raise__(self):?
Here's my exception class that is using raise:
class SCE(Exception):
"""
An error while performing SCE functions.
"""
def __init__(self, value=None):
"""
Message: A ...
1
vote
1answer
67 views
Throwing Java exception in JRuby and catching it in Java
I have created my own UI component in Java. It has model and a few of model's methods can throw my exception called ModelException. I want to use this component in JRuby but I can't raise my ...
1
vote
2answers
108 views
raising events in C# and outputting?
ive been working on a program. i has 3 classes. 2 of the classes have timers that repeat at different intervals and once one "cycle" of the timer is done it raises an event with a string as return. ...
1
vote
1answer
91 views
how to raise event with timer?
ok so i have two classes each with timers set at different intervals. one goes off every 2 seconds, the other every 2 minutes. each time the code runs under the timer i want it to raise an event with ...
1
vote
1answer
128 views
how to raise an event when a value in a cell of a wpf datagrid changes using MVVM?
I need help with a wpf datagrid using the MVVM design pattern.
I have a datagid that is bound to an observablecollection. The first column in the grid contains decimal values that cannot be edited. ...
1
vote
4answers
245 views
Python reraise/recatch exception
I would like to know if it is possible in python to raise an exception in one except block and catch it in a later except block. I believe some other languages do this by default.
Here is what it ...
1
vote
2answers
208 views
How do I Raise an Event when the Binding is completed?
I have a TextBox in my application that i am developing and the binding is done in the xaml
I want to be able to raise an event when the binding of the TextBox Text Property is completed meaning when ...
1
vote
1answer
309 views
How to raise Suds.WebFault from python code?
I am trying to raise a Suds.WebFault from python code. The __init__ method\constructor takes three arguments __init__(self, fault, document). The fault has fault.faultcode and fault.detail ...
1
vote
2answers
468 views
Python, rasing an exception without arguments
I would like to know the best practice about raising an exception without arguments.
In the official python documentation, you can see this :
try:
raise KeyboardInterrupt
...
1
vote
5answers
526 views
scope of raise exception, handling your own exceptions in PLSQL code
I have this procedure:
create or replace PROCEDURE CONVERTE
IS
CURSOR oldemployees IS
SELECT *
FROM emp1
WHERE data_saida= NULL;
new_ndep emp1.num_dep%type;
...
0
votes
2answers
37 views
Best way to further secure rails app from?
I am using rails 3.2 and devise 1.5.3.
I added an admin attribute in my model as described in option 2 on the devise wiki How To: Add an Admin Role
I added this in a post controller for force ...
0
votes
2answers
69 views
Joomla JError::raiseWarning() shows twice
I'm writing a Joomla plugin that looks more or less like:
<?php
// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );
class plgSystemTest extends JPlugin {
...
0
votes
1answer
125 views
How do I go about implementing drag delta on shapes
How do I go about implementing the drag delta on a Shape, I have the following code:
void Connector_MouseLeftButtonDown(object sender, System.Windows.Input.MouseButtonEventArgs e)
{
if ...
0
votes
1answer
247 views
Fire MouseDown Event in ScrollViewer manually WPF
I use a TabControl -> ScrollViewer -> Border with pMouseLeftButtonDown handler.... My goal is to implement a drag to scroll scrollviewer...
i have a custom scrollviewer and i cancel all ...
0
votes
1answer
86 views
Why wxframe isn't raised from a function called with global gtk binder?
Ok, why this simple app dosn't work.
I've spent one day investigating this and got nothing.
import wx, os
import gtk
import keybinder
class FrameWithHotKey(wx.Frame):
def __init__(self, *args, ...
0
votes
1answer
60 views
Rails Resuce, making Information Available in the Switch Rescue
I have the following:
class MailingJob < Struct.new(:mailing_id)
class MissingInfo < ArgumentError; end
def perform
....
begin
......
raise MissingInfo, "Not ...
0
votes
3answers
213 views
Python: I'm not allowed to raise exception. Are there other elegant python ways?
My work place has imposed a rules for no use of exception (catching is allowed). If I have code like this
def f1()
if bad_thing_happen():
raise Exception('bad stuff')
...
return something
I ...
0
votes
4answers
261 views
Where is the raise object in Python?
When you want to print a bunch of variables in Python, you have quite a few options, such as:
for i in range(len(iterable)):
print iterable[i].name
OR
map(lambda i: sys.stdout.write(i.name), ...
0
votes
1answer
528 views
Rails ActiveSupport: How to assert that an error is raised?
I am wanting to test a function on one of my models that throws specific errors. The function looks something like this:
def merge(release_to_delete)
raise "Can't merge a release with itself!" if( ...
0
votes
2answers
394 views
How can I programmatically generate keyDown events in Silverlight?
I have 2 textBoxes. First is visible the second is not.
When keyDown event fires on first textBox I want to fire the same event on 2nd textBox, so it would react same as if user was typing in 2nd ...
0
votes
1answer
64 views
Question about when and when not to raise events (C#)
I am programming an instant messaging library for MSN Messenger, and I have a simple question about raising events.
When logging in, should I be raising UserAdded for each user that is synchronized ...
0
votes
2answers
190 views
Go - Raise an exception
I would want to raise an exception as it's made in Python or Java --to finish the program with an error message--.
An error message could be returned to a parent function:
func readFile(filename ...
0
votes
2answers
210 views
Eager loading for globalize2 translations
i have 2 models - Issue and Answers (issue has many answers) and both have translations with globalize2. Every time i attempting to load Issue with answers via
@issue = Issue.find(params[:id])
...
0
votes
1answer
434 views
Ruby Web API scraping / error handling with Hpricot
I have written a simple ruby gem to scrape a set of websites, providing a simple API, inside the gem itself I have included a retry method... to attempt to use Hpricot 3 or more times on failure ...
0
votes
2answers
553 views
Is it possible to raise an event on an object, from outside that object, without a custom function
public class a
{
public event eventhandler test;
public void RaiseTest(){//fire test}
}
Is it possible to raise test on this class, from outside this class, without calling the method?
...
-2
votes
7answers
574 views
How to get a pay raise?
Lot's of people have trouble asking for a raise (me included).
Post your tips, stories, anything that may help.