lib/csd/application/minisip/error.rb in csd-0.1.9 vs lib/csd/application/minisip/error.rb in csd-0.1.10

- old
+ new

@@ -1,12 +1,18 @@ # -*- encoding: UTF-8 -*- -require File.join(File.dirname(__FILE__), '..', '..', 'error') +require 'csd/error' module CSD module Error - - module Options - class PathNotFound < CSDError; status_code(200); end + module Minisip + + # See 'csd/error' to find out which status code range has been assigned to MiniSIP + + class BuildDirNotFound < CSDError; status_code(200); end + + module Core + class FFmpegInstalled < CSDError; status_code(210); end + end + end - end end \ No newline at end of file