dataaccessexception.java
来自「SyncML的java实现类库 funambol公司发布的」· Java 代码 · 共 41 行
JAVA
41 行
/*
* Copyright (C) 2006-2007 Funambol
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the Honest Public License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* Honest Public License for more details.
*
* You should have received a copy of the Honest Public License
* along with this program; if not, write to Funambol,
* 643 Bair Island Road, Suite 305 - Redwood City, CA 94063, USA
*/
package com.funambol.storage;
/**
* Represents a <i>"update"</i> error on device database.
*/
public class DataAccessException extends Exception {
/**
* Creates a new instance of <code>DataAccessException</code>
* without detail message.
*/
public DataAccessException() {
}
/**
* Constructs an instance of <p><code>DataAccessException</code></p>
* with the specified detail message.
* @param msg the detail message.
*/
public DataAccessException(String msg) {
super(msg);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?