HBASE-18958 Removed the IS annotation from SpaceLimitingException

Signed-off-by: Michael Stack <stack@apache.org>
This commit is contained in:
Jan Hentschel 2017-10-08 19:21:20 +02:00 committed by Michael Stack
parent 6e772096ad
commit 496fcda1d9
No known key found for this signature in database
GPG Key ID: 9816C7FC8ACC93D2
1 changed files with 0 additions and 2 deletions

View File

@ -20,13 +20,11 @@ package org.apache.hadoop.hbase.quotas;
import org.apache.commons.logging.Log; import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory; import org.apache.commons.logging.LogFactory;
import org.apache.yetus.audience.InterfaceAudience; import org.apache.yetus.audience.InterfaceAudience;
import org.apache.yetus.audience.InterfaceStability;
/** /**
* An Exception that is thrown when a space quota is in violation. * An Exception that is thrown when a space quota is in violation.
*/ */
@InterfaceAudience.Public @InterfaceAudience.Public
@InterfaceStability.Evolving
public class SpaceLimitingException extends QuotaExceededException { public class SpaceLimitingException extends QuotaExceededException {
private static final long serialVersionUID = 2319438922387583600L; private static final long serialVersionUID = 2319438922387583600L;
private static final Log LOG = LogFactory.getLog(SpaceLimitingException.class); private static final Log LOG = LogFactory.getLog(SpaceLimitingException.class);