fix after test
Test Workflow / test (push) Successful in 3s

This commit is contained in:
vladp
2025-12-24 13:58:46 +07:00
parent a77a51f519
commit f6d4ebfe0e
3 changed files with 10 additions and 35 deletions
@@ -2,6 +2,6 @@ package ru.soune.nocopy.exception;
public class ChunkSizeExceededException extends RuntimeException {
public ChunkSizeExceededException(long actualSize, long maxSize) {
super(String.format("Chunk size exceeded: %d > %d", actualSize, maxSize));
super(String.format("Chunk size not valid: " + actualSize));
}
}