File: error.rb

package info (click to toggle)
ruby-mustermann19 0.4.3%2Bgit20160621-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 756 kB
  • ctags: 445
  • sloc: ruby: 7,197; makefile: 3
file content (6 lines) | stat: -rw-r--r-- 440 bytes parent folder | download
1
2
3
4
5
6
module Mustermann
  Error        ||= Class.new(StandardError) # Raised if anything goes wrong while generating a {Pattern}.
  CompileError ||= Class.new(Error)         # Raised if anything goes wrong while compiling a {Pattern}.
  ParseError   ||= Class.new(Error)         # Raised if anything goes wrong while parsing a {Pattern}.
  ExpandError  ||= Class.new(Error)         # Raised if anything goes wrong while expanding a {Pattern}.
end