/* $Id$ */ package org.noreply.fancydress.status; /** * An entry in the server descriptor violates the syntax given in the specs. */ public class Mix3BadServerFormatException extends Mix3BadFormatException { public Mix3BadServerFormatException(String s) { super(s); } public Mix3BadServerFormatException(String s, Throwable cause) { super(s, cause); } }