Sha256: 9cf57b37e9c216f5eec6b45270a862a9bda33e4fcde5bacb78487322b58f68b6
Contents?: true
Size: 467 Bytes
Versions: 3
Compression:
Stored size: 467 Bytes
Contents
# frozen_string_literal: true require_relative "calliope/client" # Calliope and all its functionality. module Calliope # Raised when the request body to the lavalink server was malformed. class BadBody < RuntimeError; end # Raised when our authentication is insufficent for connecting to the lavalink server. class Unauthorized < RuntimeError; end # Raised when the resource, usually a track, couldn't be found. class NotFound < RuntimeError; end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
calliope-link-1.0.2 | lib/calliope.rb |
calliope-link-1.0.1 | lib/calliope.rb |
calliope-link-1.0.0 | lib/calliope.rb |