Example usage for org.hibernate HibernateException HibernateException

List of usage examples for org.hibernate HibernateException HibernateException

Introduction

In this page you can find the example usage for org.hibernate HibernateException HibernateException.

Prototype

public HibernateException(Throwable cause) 

Source Link

Document

Constructs a HibernateException using the given message and underlying cause.

Usage

From source file:net.wohlfart.framework.search.FullTextSessionImpl.java

License:Open Source License

@Override
public Collection<?> filter(final Object collection, final String filter) throws HibernateException {
    throw new HibernateException("unsupported method");
}

From source file:net.wohlfart.framework.search.FullTextSessionImpl.java

License:Open Source License

@Override
public Collection<?> filter(final Object collection, final String filter, final Object value, final Type type)
        throws HibernateException {
    throw new HibernateException("unsupported method");
}

From source file:net.wohlfart.framework.search.FullTextSessionImpl.java

License:Open Source License

@Override
public Collection<?> filter(final Object collection, final String filter, final Object[] values,
        final Type[] types) throws HibernateException {
    throw new HibernateException("unsupported method");
}

From source file:net.wohlfart.framework.search.FullTextSessionImpl.java

License:Open Source License

@Override
public List<?> find(final String query) throws HibernateException {
    throw new HibernateException("unsupported method");
}

From source file:net.wohlfart.framework.search.FullTextSessionImpl.java

License:Open Source License

@Override
public List<?> find(final String query, final Object value, final Type type) throws HibernateException {
    throw new HibernateException("unsupported method");
}

From source file:net.wohlfart.framework.search.FullTextSessionImpl.java

License:Open Source License

@Override
public List<?> find(final String query, final Object[] values, final Type[] types) throws HibernateException {
    throw new HibernateException("unsupported method");
}

From source file:net.wohlfart.framework.search.FullTextSessionImpl.java

License:Open Source License

@Override
public Iterator<?> iterate(final String query) throws HibernateException {
    throw new HibernateException("unsupported method");
}

From source file:net.wohlfart.framework.search.FullTextSessionImpl.java

License:Open Source License

@Override
public Iterator<?> iterate(final String query, final Object value, final Type type) throws HibernateException {
    throw new HibernateException("unsupported method");
}

From source file:net.wohlfart.framework.search.FullTextSessionImpl.java

License:Open Source License

@Override
public Iterator<?> iterate(final String query, final Object[] values, final Type[] types)
        throws HibernateException {
    throw new HibernateException("unsupported method");
}

From source file:net.wohlfart.framework.search.FullTextSessionImpl.java

License:Open Source License

@Override
public void save(final String entityName, final Object object, final Serializable id)
        throws HibernateException {
    throw new HibernateException("unsupported method");
}