/* * 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); } }