You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
519 B
Java
18 lines
519 B
Java
package net.minecraft.client.renderer;
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
import net.minecraft.client.renderer.texture.Stitcher;
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
public class StitcherException extends RuntimeException
|
|
{
|
|
private final Stitcher.Holder field_98149_a;
|
|
private static final String __OBFID = "CL_00001057";
|
|
|
|
public StitcherException(Stitcher.Holder p_i2344_1_, String p_i2344_2_)
|
|
{
|
|
super(p_i2344_2_);
|
|
this.field_98149_a = p_i2344_1_;
|
|
}
|
|
} |