summaryrefslogtreecommitdiffhomepage
path: root/lib/dispatch/tools/errors.rb
blob: c09a529e607b454b2abe34903c56c80c3ceb63ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module Dispatch
  module Tools
    class Error < StandardError; end

    class DuplicateToolError < Error; end

    class ToolNotFoundError < Error; end

    class ValidationError < Error; end

    class ExecutionError < Error; end
  end
end