📄 stepncexception.java
字号:
/* $RCSfile: coolant.cxx,v $
* $Revision: 1.3 $ $Date: 2006/08/21 14:15:51 $
*
* Copyright (c) 1991-2006 by STEP Tools Inc.
* All Rights Reserved.
*
* This file may be distributed and/or modified under the terms of
* the GNU General Public License version 2 as published by the Free
* Software Foundation and appearing in the file LICENSE.GPL included
* with this file.
*
* THIS FILE IS PROVIDED "AS IS" WITH NO WARRANTY OF ANY KIND,
* INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE.
*
* ----------------------------------------
*/
package com.steptools.view238;
public class StepNcException extends Exception {
public StepNcException(Throwable ex) {
super(ex);
}
public StepNcException(String message) {
super(message);
}
public StepNcException(String message, Throwable ex) {
super(message, ex);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -