mirror of
https://github.com/jekyll/jekyll.git
synced 2026-02-01 02:05:35 -05:00
10 lines
151 B
Ruby
10 lines
151 B
Ruby
module Jekyll
|
|
module Errors
|
|
class FatalException < RuntimeError
|
|
end
|
|
|
|
class MissingDependencyException < FatalException
|
|
end
|
|
end
|
|
end
|