class RitoPlz::API::BadRequestException

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/RitoPlz/API/exceptions.rb, line 4
      def initialize
        msg = %{
400 (BAD REQUEST)
This error indicates that there is a syntax error in the request and the request has therefore been denied. The client should not continue to make similar requests without modifying the syntax or the requests being made.

Common Reasons:
  > A provided parameter was in the wrong format
  > A required parameter was not provided

This one is likely our fault, file a bug report
        }

        super(msg)
      end