vote up 38 vote down star
12

I have exceptions created for every condition that my application does not expect. UserNameNotValidException, PasswordNotCorrectException etc.

However I was told I should not create exceptions for those conditions. In my UML those ARE exceptions to the main flow, so why should it not be an exception?

Any guidance or best practices for creating exceptions?

flag
show 2 more comments

33 Answers

prev 1 2
vote up 0 vote down

The simple answer is, whenever an operation is impossible (because of either application OR because it would violate business logic). If a method is invoked and it impossible to do what the method was written to do, throw an Exception. A good example is that constructors always throw ArgumentExceptions if an instance cannot be created using the supplied parameters. Another example is InvalidOperationException, which is thrown when an operation cannot be performed because of the state of another member or members of the class.

In your case, if a method like Login(username, password) is invoked, if the username is not valid, it is indeed correct to throw a UserNameNotValidException, or PasswordNotCorrectException if password is incorrect. The user cannot be logged in using the supplied parameter(s) (i.e. it's impossible because it would violate authentication), so throw an Exception. Although I might have your two Exceptions inherit from ArgumentException.

Having said that, if you wish NOT to throw an Exception because a login failure may be very common, one strategy is to instead create a method that returns types that represent different failures. Here's an example:

{ // class
    ...

    public LoginResult Login(string user, string password)
    {
    	if (IsInvalidUser(user))
    	{
    		return new UserInvalidLoginResult(user);
    	}
    	else if (IsInvalidPassword(user, password))
    	{
    		return new PasswordInvalidLoginResult(user, password);
    	}
    	else
    	{
    		return new SuccessfulLoginResult();
    	}
    }

    ...
}

public abstract class LoginResult
{
    public readonly string Message;

    protected LoginResult(string message)
    {
    	this.Message = message;
    }
}

public class SuccessfulLoginResult : LoginResult
{
    public SucccessfulLogin(string user)
    	: base(string.Format("Login for user '{0}' was successful.", user))
    { }
}

public class UserInvalidLoginResult : LoginResult
{
    public UserInvalidLoginResult(string user)
    	: base(string.Format("The username '{0}' is invalid.", user))
    { }
}

public class PasswordInvalidLoginResult : LoginResult
{
    public PasswordInvalidLoginResult(string password, string user)
    	: base(string.Format("The password '{0}' for username '{0}' is invalid.", password, user))
    { }
}

Most developers are taught to avoid Exceptions because of the overhead caused by throwing them. It's great to be resource-conscious, but usually not at the expense of your application design. That is probably the reason you were told not to throw your two Exceptions. Whether to use Exceptions or not usually boils down to how frequently the Exception will occur. If it's a fairly common or an fairly expectable result, this is when most developers will avoid Exceptions and instead create another method to indicate failure, because of the supposed consumption of resources.

Here's an example of avoiding using Exceptions in a scenario like just described, using the Try() pattern:

public class ValidatedLogin
{
    public readonly string User;
    public readonly string Password;

    public ValidatedLogin(string user, string password)
    {
    	if (IsInvalidUser(user))
        {
            throw new UserInvalidException(user);
        }
        else if (IsInvalidPassword(user, password))
        {
            throw new PasswordInvalidException(password);
        }

    	this.User = user;
    	this.Password = password;
    }

    public static bool TryCreate(string user, string password, out ValidatedLogin validatedLogin)
    {
    	if (IsInvalidUser(user) || 
    	    IsInvalidPassword(user, password))
        {
            return false;
        }

    	validatedLogin = new ValidatedLogin(user, password);

    	return true;
    }
}
link|flag
vote up 0 vote down

Exceptions are not the only way to handle errors. There are several different types of errors that should be handled through different mechanisms.

Internal logic error:

If a process is in an invalid state due to a bug in the same process, use assertions to kill the process. Do not try to recover from bugs in your own code and within your own process, as the only proper response is to file a bug, and generally there is no way to recover safely anyway.

Note that Java (stupidly) uses exceptions to implement assertions, but you shouldn't think about them as exceptions or ever try to catch them. Also note that in most languages assertions are compiled out of release builds and are not considered part of the logic of the application.

Input errors (or external logic errors):

Any input from external sources that comes into your process should be validated, and perhaps filtered. Validation can be a predicate i.e. IsValid(my_inputs).

Generally, if you can check ahead of time to see if an operation can succeed, then that is the preferred. Exceptions are for those conditions when it is impossible to check for success ahead of time.

Frequently occurring error conditions:

Should always be dealt with by checking for an error condition with if statements, not try, except. Exceptions are slow. Also, an error condition that is going to occur frequently the programmer will not likely forget to check.

IO failure:

Sometimes an operation involving IO will fail, e.g. a file will not be found, a connection to a database will be lost because the database died, etc. This is a good candidate for an exception because

  1. IO is already very slow, so the overhead of an exception is comparatively low.
  2. There no way to check ahead of time, and the user is likely to forget to check whether his io object has been put into a bad state after every single io operation he performs.

So, in essence, if your particular operation isn't doing any kind of IO, don't throw an exception.

An exception to the rule of exceptions:

Constructors can only report errors with exceptions. That said, you should try to do very little work in a constructor (just pass in values and assign them to instance variables). Consider using builders or factories for objects that have complicated constructions processes.

link|flag
vote up 0 vote down

Create new exceptions when you'd like to express two error states or more in your return value.

link|flag
prev 1 2

Your Answer

Get an OpenID
or

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