File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/main/java/net/dv8tion/jda Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1919/**
2020 * Used to indicate where an interaction was first acknowledged at, for debugging purposes.
2121 */
22- public class FirstAckException extends RuntimeException
22+ public class FirstAcknowledgementException extends RuntimeException
2323{
24- public FirstAckException ()
24+ public FirstAcknowledgementException ()
2525 {
2626 super ("This is where the interaction was first acknowledged at" );
2727 }
Original file line number Diff line number Diff line change 2424import net .dv8tion .jda .api .entities .channel .Channel ;
2525import net .dv8tion .jda .api .entities .channel .ChannelType ;
2626import net .dv8tion .jda .api .entities .channel .middleman .GuildChannel ;
27- import net .dv8tion .jda .api .exceptions .FirstAckException ;
27+ import net .dv8tion .jda .api .exceptions .FirstAcknowledgementException ;
2828import net .dv8tion .jda .api .interactions .DiscordLocale ;
2929import net .dv8tion .jda .api .interactions .IntegrationOwners ;
3030import net .dv8tion .jda .api .interactions .Interaction ;
@@ -156,7 +156,7 @@ public synchronized IllegalStateException tryAck()
156156 {
157157 // Store where the first ack was made, so we can use show it on the 2nd ack
158158 if (recordAckTraces )
159- firstAckTrace = new FirstAckException ();
159+ firstAckTrace = new FirstAcknowledgementException ();
160160 isAck = true ;
161161 return null ;
162162 }
You can’t perform that action at this time.
0 commit comments