File: error.rb

package info (click to toggle)
ruby-pluggaloid 1.7.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 260 kB
  • sloc: ruby: 1,752; sh: 4; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 416 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- coding: utf-8 -*-
module Pluggaloid
  class Error < ::StandardError; end

  class ArgumentError < Error; end

  class TypeError < Error; end

  class FilterError < Error; end

  class NoDefaultDelayerError < Error; end

  class DuplicateListenerSlugError < Error; end

  class UndefinedStreamIndexError < Error; end

  class UndefinedCollectionIndexError < Error; end

  class NoReceiverError < Error; end
end