blob: afb08b6ede3dcfd30d9798142433f9da449095a1 (
plain)
1
2
3
4
5
6
7
8
9
|
package com.keuin.psmb4j.util.error;
import java.io.IOException;
public class StringLengthExceededException extends IOException {
public StringLengthExceededException(long length) {
super(String.format("String is too long (%d Bytes)", length));
}
}
|