/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
OnlineDB/SiStripConfigDb/java/DetIDGenerator/src/db/ClassNotSupportedException.java
29 строк
614 B
David Mendez
Removed CVS Keywords from OnlineDB
12 сен 2013, 15:41
12 сен 2013, 15:41
d995292
Код
Авторство
О чём код?
package db; /** * <p>Sent when a class is used where it should not ...</p> * @author G. Baulieu * @version 1.0 **/ /* Revision 1.2 2006/06/07 12:40:42 baulieu Add a - verbose option Add a serialVersionUID to the ClassNotSupportedException class to avoid a warning Revision 1.1 2006/02/02 17:17:00 baulieu Some modifications for JDK 1.5 Call a PL/SQL function to export the parameters */ public class ClassNotSupportedException extends RuntimeException { private static final long serialVersionUID = 1L; public ClassNotSupportedException(String message) { super(message); } }