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 19
19
/**
20
20
* Used to indicate where an interaction was first acknowledged at, for debugging purposes.
21
21
*/
22
- public class FirstAckException extends RuntimeException
22
+ public class FirstAcknowledgementException extends RuntimeException
23
23
{
24
- public FirstAckException ()
24
+ public FirstAcknowledgementException ()
25
25
{
26
26
super ("This is where the interaction was first acknowledged at" );
27
27
}
Original file line number Diff line number Diff line change 24
24
import net .dv8tion .jda .api .entities .channel .Channel ;
25
25
import net .dv8tion .jda .api .entities .channel .ChannelType ;
26
26
import net .dv8tion .jda .api .entities .channel .middleman .GuildChannel ;
27
- import net .dv8tion .jda .api .exceptions .FirstAckException ;
27
+ import net .dv8tion .jda .api .exceptions .FirstAcknowledgementException ;
28
28
import net .dv8tion .jda .api .interactions .DiscordLocale ;
29
29
import net .dv8tion .jda .api .interactions .IntegrationOwners ;
30
30
import net .dv8tion .jda .api .interactions .Interaction ;
@@ -156,7 +156,7 @@ public synchronized IllegalStateException tryAck()
156
156
{
157
157
// Store where the first ack was made, so we can use show it on the 2nd ack
158
158
if (recordAckTraces )
159
- firstAckTrace = new FirstAckException ();
159
+ firstAckTrace = new FirstAcknowledgementException ();
160
160
isAck = true ;
161
161
return null ;
162
162
}
You can’t perform that action at this time.
0 commit comments