A little while ago we talked about exceptions in Ruby. This time we explore ways of creating custom exceptions specific to your app’s needs.
Let's say we have a method that handles the uploading of images while only allowing JPEG images that are between 100 Kilobytes and 10 Megabytes. To enforce these rules we raise an exception every time an image violates them.
Every time a user uploads an image that doesn't meet the rules, our (Rails) web app displays the default Rails 502 error page for the uncaught error.
The Rails generic error page doesn't offer the user much help, so let's see if we can improve on these errors. We have two goals: inform the user when the file size is outside the set bounds and prevent hackers from uploading potentially malicious (non-JPEG) files, by returning a 403
forbidden status code.
Custom error types
Almost everything in Ruby is an object, and errors are no exception. This means that we can subclass from any error class and create our own. We can use these custom error types in our handle_upload
method for different validations.
First, we've added three new classes to the handler that extend from StandardError
. For the image size errors, we've overridden the message
method of StandardError
with an error message we can show to users. The way raise
was called in the handle_upload
method has also changed, by replacing the custom StandardError
message with a different error type we can raise a different, more specific, error.
Now, we can use these custom error types in our controller to return different responses to errors. For instance, we can return the specific error message or a specific response code.
This is already a lot better than using the standard raise
calls. With a little bit more subclassing we can make it make it easier to use, by rescuing entire error groups rather than every error type separately.
Instead of rescuing every separate image dimension exception, we can now rescue the parent class ImageDimensionError
. This will rescue both our ImageTooBigError
and ImageTooSmallError
.
The most common case for using your own error classes is when you write a gem. The mongo-ruby-driver gem is a good example of the use of custom errors. Each operation that could result in an exception has its own exception class, making it easier to handle specific use cases and generate clear exception messages and classes.
Another advantage of using custom exception classes is that when using exception monitoring tools like AppSignal. These tools give you a better idea as to where exceptions occurred, as well as grouping similar errors in the user interface.
Have any questions about raising or catching exceptions in Ruby? Please don’t hesitate to let us know at @AppSignal. If you have any comments regarding the article or if you have any topics that you'd like us to cover, then please get in touch with us.