class Sqreen::Actions::UnknownActionType

Exception for when an unknown action type is gotten from the server

Attributes

action_type[R]

Public Class Methods

new(action_type) click to toggle source
Calls superclass method Sqreen::Exception::new
# File lib/sqreen/actions/unknown_action_type.rb, line 14
def initialize(action_type)
  super("no such action type: #{action_type}. Must be one of #{Base.known_types}")
  @action_type = action_type
end