mattbrictson/tomo

View on GitHub
lib/tomo/cli/interrupted_error.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Tomo
  class CLI
    class InterruptedError < Error
      def to_console
        "Interrupted"
      end
    end
  end
end