class InvalidCasTicketException

Thrown when a user attempts to pass a CAS ticket that the server says is invalid.

Attributes

ticket[R]

Public Class Methods

new(ticket, msg=nil) click to toggle source
Calls superclass method
# File lib/devise_cas_authenticatable/exceptions.rb, line 6
def initialize(ticket, msg=nil)
  super(msg)
  @ticket = ticket
end