org.teasoft.bee.osql.exception.BeeIllegalEntityException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bee Show documentation
Show all versions of bee Show documentation
Bee is a Java ORM framework.Easy and Stronger!
The newest version!
/*
* Copyright 2016-2020 the original author.All rights reserved.
* Kingstar([email protected])
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* 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 org.teasoft.bee.osql.exception;
import org.teasoft.bee.osql.BeeException;
/**
* Bee illegal entity exception.
* @author Kingstar
* @since 1.5
*/
public class BeeIllegalEntityException extends BeeException {
static final long serialVersionUID = -875516993124221101L;
public BeeIllegalEntityException() {
super();
}
public BeeIllegalEntityException(String message) {
super(message);
}
public BeeIllegalEntityException(String message, Throwable cause) {
super(message, cause);
}
public BeeIllegalEntityException(Throwable cause) {
super(cause);
}
}