From 7577b37c8b8d52c3d8f31fcd763f6fdfe65ebbf2 Mon Sep 17 00:00:00 2001 From: Awesome Code Date: Sat, 9 Jan 2021 07:14:49 +0000 Subject: [PATCH] Auto corrected by following Lint Ruby Lint/InheritException --- lib/synvert/core/exceptions.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/synvert/core/exceptions.rb b/lib/synvert/core/exceptions.rb index e683d8c6..8e1867f6 100644 --- a/lib/synvert/core/exceptions.rb +++ b/lib/synvert/core/exceptions.rb @@ -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