From: Ben Beltran Date: Sat, 6 Oct 2012 07:44:20 +0000 (-0500) Subject: Skeletons for the exceptions X-Git-Url: https://git.r.bdr.sh/rbdr/lyricli.rb/commitdiff_plain/2677b890a58ffaccf47f54615cd3ae6715586ab8?ds=sidebyside;hp=143d7aad53cdb6e15f17ef7d1a98981dac7140da Skeletons for the exceptions --- diff --git a/lib/lyricli/exceptions/disable_source_exception.rb b/lib/lyricli/exceptions/disable_source_exception.rb index e69de29..449c979 100644 --- a/lib/lyricli/exceptions/disable_source_exception.rb +++ b/lib/lyricli/exceptions/disable_source_exception.rb @@ -0,0 +1,7 @@ +module Lyricli + module Exceptions + class DisableSourceException + end + end +end + diff --git a/lib/lyricli/exceptions/enable_source_exception.rb b/lib/lyricli/exceptions/enable_source_exception.rb index e69de29..f1395df 100644 --- a/lib/lyricli/exceptions/enable_source_exception.rb +++ b/lib/lyricli/exceptions/enable_source_exception.rb @@ -0,0 +1,7 @@ +module Lyricli + module Exceptions + class EnableSourceException + end + end +end + diff --git a/lib/lyricli/exceptions/invalid_lyrics_exception.rb b/lib/lyricli/exceptions/invalid_lyrics_exception.rb index e69de29..30cab41 100644 --- a/lib/lyricli/exceptions/invalid_lyrics_exception.rb +++ b/lib/lyricli/exceptions/invalid_lyrics_exception.rb @@ -0,0 +1,7 @@ +module Lyricli + module Exceptions + class InvalidLyricsException + end + end +end + diff --git a/lib/lyricli/exceptions/lyrics_not_found_exception.rb b/lib/lyricli/exceptions/lyrics_not_found_exception.rb index e69de29..c09321d 100644 --- a/lib/lyricli/exceptions/lyrics_not_found_exception.rb +++ b/lib/lyricli/exceptions/lyrics_not_found_exception.rb @@ -0,0 +1,7 @@ +module Lyricli + module Exceptions + class LyricsNotFoundException + end + end +end + diff --git a/lib/lyricli/exceptions/reset_source_exception.rb b/lib/lyricli/exceptions/reset_source_exception.rb index e69de29..ba079e4 100644 --- a/lib/lyricli/exceptions/reset_source_exception.rb +++ b/lib/lyricli/exceptions/reset_source_exception.rb @@ -0,0 +1,7 @@ +module Lyricli + module Exceptions + class ResetSourceException + end + end +end + diff --git a/lib/lyricli/exceptions/source_configuration_exception.rb b/lib/lyricli/exceptions/source_configuration_exception.rb index e69de29..9e9ef31 100644 --- a/lib/lyricli/exceptions/source_configuration_exception.rb +++ b/lib/lyricli/exceptions/source_configuration_exception.rb @@ -0,0 +1,7 @@ +module Lyricli + module Exceptions + class SourceConfigurationException + end + end +end + diff --git a/lib/lyricli/exceptions/start_source_exception.rb b/lib/lyricli/exceptions/start_source_exception.rb index e69de29..1abcc5a 100644 --- a/lib/lyricli/exceptions/start_source_exception.rb +++ b/lib/lyricli/exceptions/start_source_exception.rb @@ -0,0 +1,6 @@ +module Lyricli + module Exceptions + class StartSourceException + end + end +end diff --git a/lib/lyricli/exceptions/unknown_source_exception.rb b/lib/lyricli/exceptions/unknown_source_exception.rb index e69de29..3b16bea 100644 --- a/lib/lyricli/exceptions/unknown_source_exception.rb +++ b/lib/lyricli/exceptions/unknown_source_exception.rb @@ -0,0 +1,7 @@ +module Lyricli + module Exceptions + class UnknownSourceException + end + end +end +