The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
7 views

QWidget is raised when mouse over it

I have a problem with my Qt application, which has 2 QWidgets as windows: A & B. When I move the mouse over 'A', a child QWidget C is shown for 2 seconds. The problem is when I move the mouse ...
0
votes
0answers
16 views

Exception Handling for more than 20 Columns

I have written an 'after update of' trigger for a table which has more than 20 columns. The trigger is fired if the condition is satisfied example- if (:new.column_value is null) then raise ...
-1
votes
2answers
49 views

Java Exponential Method

I need to write a method that will take a base and raises it to any integer power, positive or negative. It can be assumed that the base will not be 0. In the method I need to call a recursive method ...
2
votes
2answers
236 views

Python raise Error proper use

Description: I've read a lot opinions about checking value type in python and most said that you shouldn't check type, but instead use try and except. I want to make clear few things. Questions: ...
0
votes
1answer
41 views

Classes and Exceptions

I have built a class below with a constructor. The idea is that a PlayingCard object should be generated randomly by default if a rank and/or suit is not specified. In the event that an invalid suit ...
6
votes
4answers
407 views

How to use “raise” keyword in Python

So I have read the official definition of "raise", but I still don't quite understand what it is doing. In simplest terms, what is "raise"? A small example of it's use would help too :) Thanks!
0
votes
2answers
122 views

raise error vs. return False python3

Hi I have started coding in python lately and I am wondering how to handle errors. I did the tutorial diveintopython and there he uses raise error to give feedback whats going wrong. Here my case: I ...
0
votes
2answers
366 views

Convert c# to vb.net 'RaiseEvent' statement to raise an event to use Gzip

I have convert class from c# to vb.net .. My point that I want to compress asp.net page to reduce the page size ,, Problem is after i convert to vb.net ,i have this error Description: An error ...
1
vote
1answer
123 views

ruby can't rescue or see abort from Thread.abort_on_exception

I need to immediately catch exceptions in threads and stop all threads, so I'm using abort_on_exception in my script. Unfortunately this means the exception is not raised to the parent thread - ...
2
votes
3answers
129 views

Shell scripting: raise to the power

How do you raise m to the power of n? I've searched for this everywhere. What i found was that writing m**n should work but it doesn't. I'm using #!/bin/sh
0
votes
2answers
267 views

try-except-raise clause, good behaviour?

I have noticed me writing try-except clauses like the following very much in the past. The main reason for this is to write less code. class Synchronizer(object): # ... def _assert_dir(self, ...
0
votes
2answers
1k views

RAISE_APPLICATION_ERROR doesn't return the message

IF l_value = 'FALSE' THEN RAISE_APPLICATION_ERROR(-20299, 'some error message'); END IF; This is part of table trigger. It should return me a error number and message, but when alert pops out it ...
5
votes
3answers
2k views

TypeError:exceptions must be old-style classes or derived from BaseException, not str

Following is my code: test = 'abc' if True: raise test + 'def' And when i run this, it gives me the TypeError TypeError: exceptions must be old-style classes or derived from BaseException, not ...
0
votes
1answer
309 views

How to Raise DragDelta event on Thumb

As you can see below, I want to start moving when the component visibility changes. because otherwise I need the user to click again to start the movement, and that is bad in terms of usability for my ...
0
votes
1answer
56 views

RSpec examples fail differently on different machines

The first one prints error infomations as follow: Failures: 1) UnitShip 测试增删改: Create should be successful Failure/Error: unit_ship = UnitShip.create(DataGenerator::Master.unit_ship) ...
2
votes
1answer
540 views

Delphi Re-Raise Exception (passed In Procedure as a parameter)

This is sample of re-raise exception and working well try raise Exception.Create('Exception msg'); except on E: Exception do begin if not(e is EConvertError) then raise; ...
4
votes
4answers
949 views

How to disable all exception raising in Delphi?

Is there a way to disable all the dialog boxes when an exception or error occurs(like access violations, indy socket errors, timeouts etc.)? They are thrown sometimes in my program, but these errors ...
2
votes
1answer
280 views

Objective - C, Using NSDecimalNumberHandler and NSDecimalNumberBehaviors protocol

A calculator class seems to be a popular starting point for those learning Objective-C. So in my 'calculator' class, I have defined my addition function to use the ...
0
votes
1answer
216 views

How does the WPF event system know about the event route?

I am trying to understand how RoutedEvents work. Well - I walked through some tutorials and understood why RoutedEvents are useful and how they work. But there is one thing, that I don't get: Let's ...
0
votes
1answer
171 views

ruby - rspec, how to handle raising a TypeError?

I have a method that does temperature conversions. The method is intended to raise a TypeError in certain cases. How can I check for that in rspec? Right now the code below gives me: Failures: 1) ...
1
vote
4answers
171 views

raise statement on a conditional expression

Following "Samurai principle", I'm trying to do this on my functions but seems it's wrong... return <value> if <bool> else raise <exception> Is there any other "beautiful" way to ...
2
votes
1answer
160 views

nested tryCatch not catching error?

I have a function: buggy <- function(...) { tryCatch({ itWorked <- FALSE stop("I don't like green eggs and ham!") itWorked <- TRUE }, finally = { if ( ...
1
vote
2answers
116 views

Ruby Kernel.raise method throws error when enclosing parameters in parenthesis

I like method parameters enclosed in parenthesis, this is some Pascal nostalgia. When cleaning up code, if I find a method parameters without it I enclose them immediately. Today it caused my working ...
7
votes
3answers
205 views

What's the syntax (=>) used in assign error object to variable of `rescue` method?

The rescue which could assigns a variable to reference the error object has this syntax (=>) rescue => e If rescue is the one of the general method call, what's the meaning of =>. Could I ...
4
votes
3answers
321 views

What exceptions can be raised by action mailer

I had a look at the class but could not see a list of possible exceptions that can be raised from delivering smtp email in rails 3. Has anyone any idea?
0
votes
2answers
116 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 ...
2
votes
3answers
150 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
166 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
400 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
213 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. ...
3
votes
5answers
125 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 ...
1
vote
1answer
838 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 ...
0
votes
1answer
646 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
778 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 ...
1
vote
1answer
904 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. ...
2
votes
1answer
440 views

Raising exceptions without 'raise' in the traceback? [duplicate]

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. ...
0
votes
1answer
188 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, ...
5
votes
4answers
2k 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
1k 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
1k 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 ...
5
votes
6answers
629 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
1k 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: ...
0
votes
1answer
100 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 ...
8
votes
1answer
584 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, ...
0
votes
3answers
294 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
431 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), ...
5
votes
1answer
2k 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
589 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 ...
5
votes
4answers
3k 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
2answers
2k 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 2