class RitoPlz::API::UnsupportedMediaTypeException

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/RitoPlz/API/exceptions.rb, line 65
      def initialize
        msg = %{
415 (UNSUPPORTED MEDIA TYPE)
This error indicates that the body of the request was not in a recognizable format

Common Reason:
  > We fucked up
  > You're trying to modify our code and you fucked up
        }

        super(msg)
      end