python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Exception never seems to get thrown when an AxisFault is found
I have this catch statement:
} catch (Exception e) {
if (e instanceof AxisFault) {
LOGGER.info("AxisFault: " + e);
if (((AxisFault) e).getFaultReason().contains("My ...
runnerpaul
Votes: 0
Answers: 1
Try catch not working with C++ GCC compiler (Qt Framework)
I am using Qt5.13.0 framework on centos with GCC compiler, try catch is working on windows but no working on Centos.
int main(int argc, char *argv[]) {
QApplication a(argc, argv);
a.setStyleSheet(...
Safdar Sikander
Votes: 0
Answers: 0
How to save an exception and throw it later
Say I want to create an exception object, but throw it a bit later. My use case is that the exception is generated in a thread, but I need to actually throw it from my main thread (because there's nob...
Edward Falk
Votes: 0
Answers: 2
IllegalArgumentException not sure if I wrote the array right
gamePanel gp;
Tile[] tile;
public tileManager(gamePanel gp){
this.gp = gp;
tile = new Tile[10]; // this means we're going to create 10 types of tiles (water, grass, water...
Martin Parunev
Votes: 0
Answers: 0