module Gist::Error

Exception tag for errors raised while gisting.

Public Class Methods

exception(*args) click to toggle source
# File lib/gist.rb, line 38
def self.exception(*args)
  RuntimeError.new(*args).extend(self)
end