/* $Id$ */ package org.noreply.fancydress.status; /** * The operation failed because the server descriptor was not correctly signed, * or no signature was found. */ public class Mix3BadServerSignatureException extends Mix3BadSignatureException { public Mix3BadServerSignatureException(String s) { super(s); } public Mix3BadServerSignatureException(String s, Throwable cause) { super(s, cause); } }