Exception: ApiError

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/sqa/errors.rb

Overview

raised when a method is still in TODO state

Class Method Summary collapse

Class Method Details

.raise(why) ⇒ Object



5
6
7
8
9
10
11
12
13
14
# File 'lib/sqa/errors.rb', line 5

def self.raise(why)
  puts "="*64
  puts "== API Error"
  puts why
  puts
  puts "Callback trace:"
  puts caller
  puts "="*64
  super
end