File: errors.rb

package info (click to toggle)
ruby-god 0.12.1-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 752 kB
  • sloc: ruby: 5,913; ansic: 217; makefile: 3
file content (24 lines) | stat: -rw-r--r-- 392 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module God

  class AbstractMethodNotOverriddenError < StandardError
  end

  class NoSuchWatchError < StandardError
  end

  class NoSuchConditionError < StandardError
  end

  class NoSuchBehaviorError < StandardError
  end

  class NoSuchContactError < StandardError
  end

  class InvalidCommandError < StandardError
  end

  class EventRegistrationFailedError < StandardError
  end

end