File: errors.rb

package info (click to toggle)
ruby-grit 2.8.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 336 kB
  • sloc: ruby: 3,643; makefile: 4
file content (10 lines) | stat: -rw-r--r-- 168 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
module Grit
  class InvalidGitRepositoryError < StandardError
  end

  class NoSuchPathError < StandardError
  end

  class InvalidObjectType < StandardError
  end
end