1 package org
.asamk
.signal
.commands
.exceptions
;
3 public sealed abstract class CommandException
extends Exception
permits IOErrorException
, RateLimitErrorException
, UnexpectedErrorException
, UntrustedKeyErrorException
, UserErrorException
{
5 public CommandException(final String message
) {
9 public CommandException(final String message
, final Throwable cause
) {
10 super(message
, cause
);