aboutsummaryrefslogtreecommitdiffstats
path: root/actionwebservice/lib/action_web_service/vendor/ws/common.rb
blob: 4266a7141d10bba634df3927a7fcffd959d8b6e2 (plain) (blame)
1
2
3
4
5
6
7
8
module WS
  class WSError < StandardError
  end

  def self.derived_from?(ancestor, child)
    child.ancestors.include?(ancestor)
  end
end