![JAR search and dependency download from the Maven repository](/logo.png)
com.jk.data.exceptions.JKRecordNotFoundException Maven / Gradle / Ivy
/*
* Copyright 2002-2022 Dr. Jalal Kiswani.
* Email: [email protected]
* Check out https://smart-api.com for more details
*
* All the opensource projects of Dr. Jalal Kiswani are free for personal and academic use only,
* for commercial usage and support, please contact the author.
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.jk.data.exceptions;
import com.jk.core.exceptions.JKDataAccessException;
// TODO: Auto-generated Javadoc
/**
* The Class JKRecordNotFoundException.
*/
public class JKRecordNotFoundException extends JKDataAccessException {
/** The Constant serialVersionUID. */
private static final long serialVersionUID = 1L;
/**
* Instantiates a new JK record not found exception.
*/
public JKRecordNotFoundException() {
}
/**
* Instantiates a new JK record not found exception.
*
* @param str the str
*/
public JKRecordNotFoundException(final String str) {
super(str);
}
/**
* Instantiates a new JK record not found exception.
*
* @param str the str
* @param cause the cause
*/
public JKRecordNotFoundException(final String str, final Throwable cause) {
super(str, cause);
}
/**
* Instantiates a new JK record not found exception.
*
* @param e the e
*/
public JKRecordNotFoundException(final Throwable e) {
super(e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy