class Pixaven::Errors::RequestTypeConflict

Public Class Methods

new(type1, type2) click to toggle source
Calls superclass method
# File lib/pixaven/errors.rb, line 8
def initialize(type1, type2)
    super("current type: #{type1}, attempted: #{type2}")
end