main.java.com.aosa.util.AOSARuntimeException.java Source code

Java tutorial

Introduction

Here is the source code for main.java.com.aosa.util.AOSARuntimeException.java

Source

/**
 * Copyright (c) 2011, AOSA_TECH, Ltd. All right reserved.
 * AOSA_TECH PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 * @Project DevicePlus_gx
 * @version V1.1.0
 */
package main.java.com.aosa.util;

import org.hibernate.HibernateException;

public class AOSARuntimeException extends HibernateException {
    /**
     * Description<code>serialVersionUID</code>      <br>
     */
    private static final long serialVersionUID = 34649360033724469L;

    public AOSARuntimeException(String message) {
        super(message);
    }

    public AOSARuntimeException(String message, Throwable cause) {
        super(message, cause);
    }

    public AOSARuntimeException(Throwable cause) {
        super(cause);
    }
}