⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 encodingexception.java

📁 无线网络管理
💻 JAVA
字号:
// NAME//      $RCSfile: EncodingException.java,v $// DESCRIPTION//      [given below in javadoc format]// DELTA//      $Revision: 3.5 $// CREATED//      $Date: 2006/01/17 17:43:54 $// COPYRIGHT//      Westhawk Ltd// TO DO///* * Copyright (C) 2000 - 2006 by Westhawk Ltd * <a href="www.westhawk.co.uk">www.westhawk.co.uk</a> * * Permission to use, copy, modify, and distribute this software * for any purpose and without fee is hereby granted, provided * that the above copyright notices appear in all copies and that * both the copyright notice and this permission notice appear in * supporting documentation. * This software is provided "as is" without express or implied * warranty. * author <a href="mailto:snmp@westhawk.co.uk">Tim Panton</a> */package uk.co.westhawk.snmp.stack;/** * Thrown to indicate that the PDU cannot be build or encoded. *  * @author <a href="mailto:snmp@westhawk.co.uk">Birgit Arkesteijn</a> * @version $Revision: 3.5 $ $Date: 2006/01/17 17:43:54 $ */public class EncodingException extends PduException {    private static final String     version_id =        "@(#)$Id: EncodingException.java,v 3.5 2006/01/17 17:43:54 birgit Exp $ Copyright Westhawk Ltd";/**  * Constructs an EncodingException with no specified detail message.  */public EncodingException() {    super();}/**  * Constructs an EncodingException with the specified detail * message.  * * @param str The detail message. */public EncodingException(String str) {    super(str);}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -