00001 package com.github.c77.base_driver.husky; 00002 00006 public class HuskyParserException extends java.lang.Exception { 00007 private final static String BASE_MESSAGE = "Exception parsing packet"; 00008 public HuskyParserException(String reason) { 00009 super(BASE_MESSAGE + ": " + reason); 00010 } 00011 }