Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/synvert/core/exceptions.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

module Synvert::Core
# Rewriter not found exception.
class RewriterNotFound < Exception
class RewriterNotFound < RuntimeError
end

# Gemfile.lock not found exception.
class GemfileLockNotFound < Exception
class GemfileLockNotFound < RuntimeError
end

# Method not supported exception.
class MethodNotSupported < Exception
class MethodNotSupported < RuntimeError
end
end