Sha256: b00cc3026b34f2204a36551193998d72d2ff8896005c26dc9a11b42e4a44c5c3
Contents?: true
Size: 564 Bytes
Versions: 15
Compression:
Stored size: 564 Bytes
Contents
# -*- coding: utf-8 -*- require 'tengine_core' module Tengine::Errors # Tengineが提供するAPIによってデータが見つからないことを示す例外です。 # railsの場合、ActionDispatch::ShowExceptions.rescue_responses を使って # 以下のように設定して使用することを想定しています。 # # ActionDispatch::ShowExceptions.rescue_responses.update({ # "Tengine::Errors::NotFound" => :not_found, # }) # # see http://d.hatena.ne.jp/takihiro/20100318/1268864801 class NotFound < StandardError end end
Version data entries
15 entries across 15 versions & 1 rubygems