class Toys::StandardMiddleware::HandleUsageErrors
def initialize(exit_code: nil, stream: $stderr, styled_output: nil)
- 
        styled_output(Boolean, nil) -- Cause the tool to display help text
- 
        stream(IO) -- Output stream to write to. Default is stderr.
- 
        exit_code(Integer) -- The exit code to return if a usage error
def initialize(exit_code: nil, stream: $stderr, styled_output: nil) @exit_code = exit_code || USAGE_ERROR_EXIT_CODE @stream = stream @styled_output = styled_output end