godreams/admin-server

View on GitHub
app/exceptions/users/not_found_exception.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Users
  class NotFoundException
    def initialize
      @code = :not_found
      @message = 'No such user exists'
      @description = 'Could not find a user with the supplied email address.'
      @status = 404
    end
  end
end