3
votes
4answers
42 views

When to throw exceptions for constructor

public Neocortex(Region rootRegion, ConnectionInterface functor) { this.rootRegion = rootRegion; this.currentRegion = this.rootRegion; this.functor = functor; } Hey above I have the constructor for ...
1
vote
4answers
36 views

Unable to instantiate templated class inside another class

I have two classes: one templated, one not. I am trying to create an instance of the templated class inside the non-templated class and the program won't compile. I'm using Visual Studio 2012 and I ...
0
votes
1answer
64 views

c++ free memory allocation in constructor when facing exception

I found some interesting behavior in the case of exception when construct an object: class bookentry { public: bookentry(){ t1.reset(new test1); //0 test1 *t11 = new test1; ...
3
votes
3answers
79 views

Constructor handling exception and using this keyword Java

I have two constructors for my class, one that takes File object and the other takes a String object, and I want to use the this keyword. The function with the implementation is the one with File as ...
0
votes
3answers
68 views

Try/catch block for simple memory allocation into public raw pointer when inside constructor?

I have a case with a raw pointer that I can't change to a smart pointer because it is part of the interface (and I don't want to break any code using it): struct Foo { Foo(); ~Foo(); int * ...
2
votes
3answers
106 views

Which constructor is called first

Following code is from "exception handling" in . The author tried to tell us that by making everything an object, we can prevent resource leaks. My question: Why the constructors of 'cat' and 'dog' ...
2
votes
1answer
30 views

Derived exception does not inherit constructors

I have a problem with the code below. #include <iostream> #include <stdexcept> class MyException : public std::logic_error { }; void myFunction1() throw (MyException) { throw ...
-1
votes
1answer
69 views

How to ensure default constructor is not called when parametric constructor fails? [closed]

Here is the code. I have to use Date Class and extend it to create ExtendedDate. I'm not supposed to change Date class in anyway. I really appreciate any help you can provide. I'm clueless about how ...
0
votes
2answers
57 views

In C++,if the Base class constructor exception,then the sequence of constructor and destructor could be this?

#include <iostream> #include <string> using namespace std; class Base { public: Base() { cout << "Base"<<endl; } ~Base() { cout << ...
0
votes
2answers
64 views

Preventing construction by throwing exception before constructor body

C++ I want a class to throw an exception before its constructor's body's opening curly brace { by using its own member function to prevent construction. I defined a member function, whose purpose is ...
1
vote
4answers
83 views

Is it a better way to use an Init() for memory allocation than Constructor?

Suppose I have things like: class obj001 { public: obj001() { std::cout << "ctor == obj001" << std::endl; } ~obj001() { std::cout << "dtor == obj001" ...
1
vote
3answers
103 views

Exception constructor with Exception Java [closed]

Does anybody know why for the overriding process the overriding method must throw an Exception of the same type (or subtype) of the overridden method whereas on the other hand for constructors it work ...
1
vote
4answers
132 views

Using Super in a Derived Class Constructor When Base Class Requires Exceptions to be Caught

I'm trying to derive a class B to a new class C in Java. The base class constructor requires that unreported exceptions must be thrown or caught. But if I try to put super(..) inside a try/catch ...
0
votes
0answers
27 views

is this object destructed during stack unwinding?

in "C++ prog..." I have seen this excerpt about constructors, destructors and exception handling mechanism: This practice is common and can lead to ‘‘memory leaks.’’ If an exception is thrown by ...
1
vote
4answers
118 views

Creating a constructor in a test case so that it will only be called once

Trying to create a constructor that is only called once in my unit tests public class ArtistTest extends InstrumentationTestCase{ private static final String TAG_NAME = "TESTING_SUITE"; ...
5
votes
5answers
133 views

RAII approach to catching constructor exceptions

I have a class that can throw an exception in its constructor. How can I declare an instance of that class in a try/catch block, while still making it available in the right scope? try { MyClass ...
11
votes
2answers
109 views

Can finalize be called after a constructor throws an exception?

Are there any details on whether or not an object is cleaned up using finalize() if that object's constructor thew an exception. When this method is called is notoriously ill defined. According to ...
1
vote
2answers
123 views

C++ exception thrown inside constructor member initializer?

Consider the following situation: struct X { ... }; struct Y { Y(...); ... X x; ... } X f() { ... if (...) throw E; ... } Y::Y(...) : ... , ...
1
vote
4answers
104 views

How to throw an exception from an enum constructor

(Referring to this post: How to throw an exception from an enum constructor?) I would really like to do the same. Example Code: public enum PublicIPWebservice { ...
0
votes
4answers
136 views

Super call in custom exception

I just want to know why we call super in own created custom exception. public class MyException extends Exception { public MyException(String message) { super(message); ...
2
votes
1answer
128 views

Uncaught exception at constructor after allocating memory

I've read that awesome summary of Michael Burr regarding a constructor that throws an exception, here: Will the below code cause memory leak in c++ My question is: Is the behavior similar when an ...
1
vote
2answers
68 views

How can I avoid this unnecessary throws statement in a constructor?

So, I have a class called Puzzle, and two (relevant) constructors for it. One constructor accepts no args, and the other takes an int, but also throws an exception. The basic idea is like this: ...
1
vote
1answer
64 views

Strange format for throwing exception from a constructor

Our professor gave us a shell to make a program in. In it he gave us a class called "Maker", and it is capable of throwing exceptions. I'm confused about how to throw and catch the error, given the ...
0
votes
1answer
26 views

exeption handling and constructors java

I am writing data to a file, when I write this data I want to do it so that if the file does not open it will give the user a message saying that something whent wrong. The way I do this is by calling ...
1
vote
6answers
154 views

How do I throw an exception for division by 0?

How do I throw an exception such that it will output "Calculation failed, there is no change between x1 and x2" if my slope's denominator is 0...The following block is a method within a class file. ...
12
votes
1answer
268 views

Exception is caught twice

class A{ public: A() { throw string("exception A"); }; }; class B{ A a; public: B() try : a() {} catch(string& s) { cout << &s << " " << s ...
8
votes
2answers
118 views

Do invocations of std constructors need to be qualified?

Do invocations of std constructors need to be qualified with std::? class whatever : public std::runtime_error { public: explicit whatever(const std::string& what) : runtime_error(what) {} }; ...
0
votes
0answers
111 views

Custom Exception not finding custom constructor

public class UserPermissionsException : Exception { #region Properties public User User { get; private set; } public string RequiredPermission { get; private set; } #endregion ...
0
votes
1answer
104 views

Assignment Help: List Constructors & Exceptions

I am currently taking a class away from school and my professor is not helpful, so I was wondering if anyone can give me pointers on what to do. The instructions were given to me as follows: You can ...
1
vote
4answers
87 views

Can a C++ program work well even though an exception is thrown from a class?

This is an interview question, the interview has been done. Given a class A with members of Class B and C. If an exception happens in class C's constructor but the program can still work well, what ...
2
votes
3answers
378 views

In Java how to remove try catch block inside a Constructor for I/O code

In Java How can I write I/O code that must be in try catch block inside a Constructor without try-catch in the costructor? Like for a method we can pass the exception to the caller of the method by ...
3
votes
2answers
98 views

If the constructor ends up with an exception, is the object created the same with a normal one?

If the constructor ends up with an exception, is the object created exactly the same with a normal one? class A { static A o; A() throws Exception { o=this; throw new ...
3
votes
2answers
152 views

why can't catch exception in a constructor?

i have this test code to handle exceptions in constructors. function f() create an exception division by zero but this exception does not caught. Instead if i throw a custom integer the exception is ...
3
votes
4answers
464 views

Java no-argument constructor: Throw impossible exception, or have empty catch block?

Is it better that a no-argument constructor throws an impossible exception or has an empty catch block? Let's say I have a class like this. public class Foo { private int num; private String ...
4
votes
5answers
411 views

Why throwing exception in constructor results in a null reference?

Why throwing exception in constructor results in a null reference? For example, if we run the codes below the value of teacher is null, while st.teacher is not (a Teacher object is created). Why? ...
0
votes
3answers
135 views

Making sure that a final variable is initialized when a constructor throws an exception

I have a final member data: public final Foo foo; in the constructor, foo is initialized as follow: foo = new Foo(); Now, unfortunately, Foo's constructor might throw an exception: try { ...
6
votes
2answers
1k views

How to check constructor arguments and throw an exception or make an assertion in a default constructor in Scala?

I would like to check constructor arguments and refuse to construct throwing IllegalArgumentException in case the arguments set is not valid (the values don't fit in expected constraints). How to code ...
6
votes
3answers
435 views

How does RAII work when a constructor throws an exception?

I am learning about the RAII idiom in C++, and how to use smart pointers. In my reading, I have come across two things that, to me, seem to contradict each other. Quoted from ...
0
votes
1answer
637 views

Custom SurfaceView causing NoSuchMethodException

I have a custom View extending SurfaceView. The XML layout is <com.myPackage.MyCustomView android:id="@+id/mycview" android:layout_width="fill_parent" android:layout_height="fill_parent" ...
1
vote
4answers
116 views

Does throwing exception at the end of constructor damage the object?

I'm working on a software communicating with external device. The device requires a set of initialization values (calibrationData). Those calibration data differ from piece to piece of this equipment. ...
2
votes
6answers
214 views

Freeing local buffers when throwing exceptions in C++

Suppose I have a following constructor in C++ class: MyClass::MyClass() { char* buffer = malloc(100); if (0 != someD3DXCallThatCanFail(..., buffer, ...)) { free(buffer); ...
3
votes
3answers
2k views

Understanding method signature in NoSuchMethod exception

I got this exception but resolved it. java.lang.NoSuchMethodError: antlr.NoViableAltForCharException.<init> (CLjava/lang/String;II)V But i'd like to know how to interpret these kind of ...
1
vote
3answers
648 views

Exception with multiple parameters in the constructor

I would like to know if it is fine to create an exception with multiple parameters in one constructor (different to throwable, string) or if this practice is bad? Why do I need an exception with ...
4
votes
3answers
2k views

Java: Exception in constructors: Problematic or not?

I am recently thinking about if throwing constructor from Java is good or not. Currently this is what I gathered: About Constructors in Java Here, Mr. StackOverflow (aka Jon Skeet) does not seem to ...
1
vote
4answers
462 views

Exception in derived class constructor

Im having some problems to handle constructor exception in derived classes. When the derived class constructor throws an error, but the parent class has allocated some objects. Will the parent class ...
4
votes
4answers
251 views

std exceptions inviting unsafe usage?

It is recommended that you always throw something derived from std::exception and there are a few predefines specialisations such as std::runtime_error std::exception's interface is given in terms of ...
1
vote
4answers
183 views

chaining constructors in Java without throwing exceptions from the default constructor

I've read this: Can I use throws in constructor? -- which gave me the right idea, and led me to one answer, but was not very explicit. I've also read several others, but could not find my answer. To ...
6
votes
1answer
199 views

Function-scope static object's constructor throws an exception

Consider the following code: #include <iostream> struct X{ X(){ throw 0; } }; void f(){ static X x; } int main(){ try { f(); } catch(int) { std::cout ...
0
votes
1answer
89 views

Error while initializing MIDlet object SecurityException - Java me

I am working on an application on Java me. All i want to do is to access members from a MIDlet from another class. I have a class mainFrm which is the main form. And i want to access some non-static ...
4
votes
2answers
228 views

What happens when a constructor partially succeeds before throwing an exception?

Suppose I have the following base class: public class RootClass { private List<RootClass> children = new ArrayList<RootClass>(); public RootClass(RootClass parent) { if (parent ...

1 2