File: error.rb

package info (click to toggle)
ruby-launchy 2.5.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 292 kB
  • sloc: ruby: 1,285; makefile: 6
file content (6 lines) | stat: -rw-r--r-- 179 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
module Launchy
  class Error < ::StandardError; end
  class ApplicationNotFoundError < Error; end
  class CommandNotFoundError < Error; end
  class ArgumentError < Error; end
end