ziperror.as.svn-base

来自「ActionScript写的3D图片展示功能」· SVN-BASE 代码 · 共 36 行

SVN-BASE
36
字号
/*nochump.util.zip.ZipErrorCopyright (C) 2007 David Chang (dchang@nochump.com)This file is part of nochump.util.zip.nochump.util.zip is free software: you can redistribute it and/or modifyit under the terms of the GNU Lesser General Public License as published bythe Free Software Foundation, either version 3 of the License, or(at your option) any later version.nochump.util.zip is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See theGNU Lesser General Public License for more details.You should have received a copy of the GNU Lesser General Public Licensealong with Foobar.  If not, see <http://www.gnu.org/licenses/>.*/package nochump.util.zip {		import flash.errors.IOError;		/**	 * Thrown during the creation or input of a zip file.	 */	public class ZipError extends IOError {				public function ZipError(message:String = "", id:int = 0) {			super(message, id);		}			}	}

⌨️ 快捷键说明

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