Skip to content
This repository has been archived by the owner on Sep 29, 2021. It is now read-only.

Commit

Permalink
Alphabetize exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
mfinelli committed Nov 3, 2015
1 parent b1c253a commit b43bd02
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/gembuild/exceptions.rb
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# encoding: utf-8

module Gembuild
# Exception raised when no pkgname is specified.
class UndefinedPkgnameError < StandardError; end

# Exception raised when no gemname is specified.
class UndefinedGemNameError < StandardError; end

# Exception raised when rubygems.org returns a 404 error.
class GemNotFoundError < StandardError; end

# Exception raised when a non-string pkgbuild is passed.
class InvalidPkgbuildError < StandardError; end

# Exception raised when no gemname is specified.
class UndefinedGemNameError < StandardError; end

# Exception raised when no pkgname is specified.
class UndefinedPkgnameError < StandardError; end
end

0 comments on commit b43bd02

Please sign in to comment.