001package com.nimbusds.infinispan.persistence.common.query;
002
003
004/**
005 * Unsupported query exception.
006 */
007public class UnsupportedQueryException extends RuntimeException {
008        
009        
010        /**
011         * Creates a new unsupported query exception.
012         *
013         * @param query The unsupported query.
014         */
015        public UnsupportedQueryException(final Query query) {
016                super("Unsupported query: " + query);
017        }
018}