001package net.minecraft.client.mco;
002
003import cpw.mods.fml.relauncher.Side;
004import cpw.mods.fml.relauncher.SideOnly;
005
006@SideOnly(Side.CLIENT)
007public class RequestDelete extends Request
008{
009    public RequestDelete(String par1Str, int par2, int par3)
010    {
011        super(par1Str, par2, par3);
012    }
013
014    public RequestDelete func_96370_f()
015    {
016        try
017        {
018            this.field_96367_a.setDoOutput(true);
019            this.field_96367_a.setRequestMethod("DELETE");
020            this.field_96367_a.connect();
021            return this;
022        }
023        catch (Exception exception)
024        {
025            throw new ExceptionMcoHttp("Failed URL: " + this.field_96365_b, exception);
026        }
027    }
028
029    public Request func_96359_e()
030    {
031        return this.func_96370_f();
032    }
033}