001/* 002 * Licensed to the Apache Software Foundation (ASF) under one or more 003 * contributor license agreements. See the NOTICE file distributed with this 004 * work for additional information regarding copyright ownership. The ASF 005 * licenses this file to you under the Apache License, Version 2.0 (the 006 * "License"); you may not use this file except in compliance with the License. 007 * You may obtain a copy of the License at 008 * 009 * http://www.apache.org/licenses/LICENSE-2.0 010 * 011 * Unless required by applicable law or agreed to in writing, software 012 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 013 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 014 * License for the specific language governing permissions and limitations 015 * under the License. 016 */ 017package org.apache.hadoop.hbase.io.encoding; 018 019import org.apache.yetus.audience.InterfaceAudience; 020 021/** 022 * Internal error which indicates a bug in a data block encoding algorithm. 023 */ 024@InterfaceAudience.Private 025public class EncoderBufferTooSmallException extends RuntimeException { 026 private static final long serialVersionUID = 4767495176134878737L; 027 028 public EncoderBufferTooSmallException(String message) { 029 super(message); 030 } 031}