QutBioacoustics/baw-workers

View on GitHub
lib/baw-workers/exceptions.rb

Summary

Maintainability
A
0 mins
Test Coverage
module BawWorkers
  module Exceptions
    public
    class UnsupportedAudioFile < BawAudioTools::Exceptions::NotAnAudioFileError; end
    class HarvesterError < StandardError; end
    class HarvesterConfigurationError < HarvesterError; end
    class HarvesterConfigFileNotFound < HarvesterConfigurationError; end
    class HarvesterIOError < HarvesterError; end
    class HarvesterAudioToolError < HarvesterIOError; end
    class HarvesterEndpointError < HarvesterError; end
    class HarvesterAnalysisError < HarvesterError; end
    class AnalysisCacheError < StandardError; end
    class AnalysisEndpointError < StandardError; end
    class ActionCancelledError < RuntimeError; end
  end
end