File: exceptions.rb

package info (click to toggle)
ruby-beaker-hostgenerator 1.7.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,556 kB
  • sloc: ruby: 3,059; makefile: 3
file content (7 lines) | stat: -rw-r--r-- 215 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
module BeakerHostGenerator
  module Exceptions
    class Error < RuntimeError ; end
    class InvalidNodeSpecError < BeakerHostGenerator::Exceptions::Error ; end
    class SafeEarlyExit < SystemExit ; end
  end
end