class RitoPlz::API::InternalServerException

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/RitoPlz/API/exceptions.rb, line 94
      def initialize
        msg = %{
500 (INTERNAL SERVER ERROR)
This error indicates that Riot fucked up. This one's my favorite.

Common Reason:
  > Spaghetti code
        }

        super(msg)
      end