package edu.neu.ccs.demeterf.http.server; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; /** Annotate a method of a Server to handle exceptions. The signature * of the method be one of: * */ @Retention(RetentionPolicy.RUNTIME) public @interface ExceptionHandler{ }