Packages

obelisk is a static site generator for Elixir. It is inspired by jekyll, with the goal of being fast and simple to use and extend.

Current section

Files

Jump to
obelisk lib obelisk errors theme_not_found.ex
Raw

lib/obelisk/errors/theme_not_found.ex

defmodule Obelisk.Errors.ThemeNotFound do
defexception [:message]
def exception({:local, theme}) do
msg = "Local theme '#{theme}' doesn't exist at './themes/#{theme}/'"
%Obelisk.Errors.ThemeNotFound{message: msg}
end
end