use generic embed for interaction errors
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 39s
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 39s
This commit is contained in:
@ -42,4 +42,16 @@ public class EmbedUtils {
|
||||
.setTimestamp(LocalDateTime.now())
|
||||
.setColor(Colors.SUCCESS);
|
||||
}
|
||||
|
||||
/**
|
||||
* Builds a generic interaction error embed
|
||||
*
|
||||
* @param ex the exception
|
||||
* @return the embed builder
|
||||
*/
|
||||
public static EmbedBuilder genericInteractionError(Exception ex) {
|
||||
return EmbedUtils.errorEmbed()
|
||||
.setDescription("An error occurred while processing your interaction. Please try again later.\n" +
|
||||
"**Error:** ```java\n%s\n```" + ex.getLocalizedMessage());
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user