16 lines
330 B
Java
16 lines
330 B
Java
/*
|
|
* Stefan Heiss
|
|
* TH Ostwestfalen-Lippe
|
|
* FB Elektrotechnik und Technische Informatik
|
|
* Quellcode zur Lehrveranstaltung Datensicherheit
|
|
*/
|
|
package util;
|
|
|
|
public class IllegalHexDumpException
|
|
extends IllegalArgumentException {
|
|
|
|
public IllegalHexDumpException(String s) {
|
|
super(s);
|
|
}
|
|
}
|