Merge "Issue #2539 removed java 7 specific code from exception subclass" into development

Former-commit-id: c60228c854 [formerly 5e02427d6e [formerly 685d0f17845c90d4bd5a6d81da66f47285b08c8e]]
Former-commit-id: 5e02427d6e
Former-commit-id: edb2b6d217
This commit is contained in:
Nate Jensen 2013-11-12 14:41:34 -06:00 committed by Gerrit Code Review
commit 568e9dacba

View file

@ -50,18 +50,6 @@ public class OgcHttpErrorException extends Exception {
this.code = code;
}
/**
* @param message
* @param cause
* @param enableSuppression
* @param writableStackTrace
*/
public OgcHttpErrorException(int code, String message, Throwable cause,
boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
this.code = code;
}
/**
* @param message
* @param cause