vote up 6 vote down star
1

How would you implement different types of errors, so you'd be able to catch specific ones and let others bubble up..?

One way to achieve this is to modify the prototype of the Error object:

Error.prototype.sender = "";


function throwSpecificError()
{
    var e = new Error();

    e.sender = "specific";

    throw e;
}

Catch specific error:

try
{
    throwSpecificError();
}

catch (e)
{
    if (e.sender !== "specific") throw e;

    // handle specific error
}


Have you guys got any alternatives?

flag

2 Answers

vote up 9 vote down check

To create custom exceptions, you can inherit from the Error object:

function SpecificError () {

}

SpecificError.prototype = new Error();

// ...
try {
  throw new SpecificError;
} catch (e) {
  if (e instanceof SpecificError) {
   // specific error
  }
}

A minimalistic approach, without inheriting from Error, could be throwing a simple object having a name and a message properties:

function throwSpecificError() {
  throw {
    name: 'SpecificError',
    message: 'SpecificError occurred!'
  };
}


// ...
try {
  throwSpecificError();
} catch (e) {
  if (e.name == 'SpecificError') {
   // specific error
  }
}
link|flag
Nice :) – Thiyagaraj Sep 16 at 15:14
Combine with Andrew's answer and it's perfect. – Ates Goral Sep 16 at 15:19
Inheriting from Error has problems. See stackoverflow.com/questions/1382107/… – Crescent Fresh Sep 16 at 15:20
vote up 3 vote down

You can use 'conditional catch' blocks. e.g.:

try {
  ...
  throwSpecificError();
  ...
}
catch (e if e.sender === "specific") {
  specificHandler(e);
}
catch (e if e.sender === "unspecific") {
  unspecificHandler(e);
}
catch (e) {
  // don't know what to do
  throw e;
}

This gives something more akin to typed exception handling used in Java, at least syntactically.

link|flag
Combine with CMS's answer and it's perfect. – Ates Goral Sep 16 at 15:20
Conditional catch is something I either didn't know earlier or forgot about. Thanks for educating/reminding me! +1 – Ates Goral Sep 16 at 15:21
1  
Only supported by Firefox (since 2.0). It does not even parse in other browsers; you only get syntax errors. – Crescent Fresh Sep 16 at 15:26
1  
Yes, this is a Mozilla-only extension, it's not even proposed for standardisation. Being a syntax-level feature there's no way to sniff for it and optionally use it either. – bobince Sep 16 at 15:36

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.