Oreol-Group/sequel-sequence

View on GitHub
lib/sequel/error.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Sequel
  (
    # Error raised when attempting to utilize an invalid adapter to SEQUENCE interface.
    MethodNotAllowed = Class.new(Error)
  ).name

  class Database
    METHOD_NOT_ALLOWED = 'Method not allowed'
  end
end