[#847] Let CompressionException extend CodecException

This commit is contained in:
Norman Maurer 2012-12-21 22:36:51 +01:00
parent 5b44fe6e65
commit b814033323

View File

@ -15,13 +15,13 @@
*/
package io.netty.handler.codec.compression;
import java.io.IOException;
import io.netty.handler.codec.CodecException;
/**
* An {@link IOException} that is raised when compression or decompression
* An {@link CodecException} that is raised when compression or decompression
* failed.
*/
public class CompressionException extends RuntimeException {
public class CompressionException extends CodecException {
private static final long serialVersionUID = 5603413481274811897L;