class Console::Event::Failure

Represents a failure of some kind, usually with an attached exception.

“‘ruby begin

raise "Something went wrong!"

rescue => exception

Console::Event::Failure.log("Something went wrong!", exception)

end “‘

Generally, you should use the {Console.error} method to log failures, as it will automatically create a failure event for you.