Skip to content

Commit c9e4968

Browse files
author
Natalia Chuklina
committed
fix imports ordering
1 parent b080284 commit c9e4968

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

topic/src/main/java/tech/ydb/topic/read/DecompressionException.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
package tech.ydb.topic.read;
22

3-
import tech.ydb.topic.description.Codec;
4-
53
import java.io.IOException;
64
import java.io.UncheckedIOException;
75

6+
import tech.ydb.topic.description.Codec;
7+
88
/**
99
* @author Nikolay Perfilov
1010
*/
@@ -13,6 +13,7 @@ public class DecompressionException extends UncheckedIOException {
1313

1414
private final byte[] rawData;
1515
private final Codec codec;
16+
1617
public DecompressionException(String message, IOException cause, byte[] rawData, Codec codec) {
1718
super(message, cause);
1819
this.rawData = rawData;

0 commit comments

Comments
 (0)