Skip to content

Commit

Permalink
Fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
LadyCailin committed Mar 3, 2024
1 parent a49aee2 commit e9f483f
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import com.laytonsmith.core.environments.Environment;
import com.laytonsmith.core.exceptions.CRE.CRECastException;
import com.laytonsmith.core.exceptions.CRE.CREIllegalArgumentException;
import com.laytonsmith.core.exceptions.CRE.CREPlayerOfflineException;
import com.laytonsmith.core.exceptions.CRE.CREPluginInternalException;
import com.laytonsmith.core.exceptions.CRE.CRERangeException;
import com.laytonsmith.core.exceptions.CRE.CREThrowable;
Expand Down Expand Up @@ -218,7 +219,8 @@ public static class send_packet extends AbstractFunction {
public Class<? extends CREThrowable>[] thrown() {
return new Class[]{
CRECastException.class,
CREIllegalArgumentException.class
CREIllegalArgumentException.class,
CREPlayerOfflineException.class,
};
}

Expand Down

0 comments on commit e9f483f

Please sign in to comment.