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 ExceptionMcoHttp extends RuntimeException 008{ 009 public ExceptionMcoHttp(String par1Str, Exception par2Exception) 010 { 011 super(par1Str, par2Exception); 012 } 013}