Package com.datastax.driver.core.exceptions

Examples of com.datastax.driver.core.exceptions.InvalidQueryException


  }

  @Test
  public void testInvalidConfigurationInQueryException() {
    String msg = "msg";
    InvalidQueryException cx = new InvalidConfigurationInQueryException(msg);
    DataAccessException dax = tx.translateExceptionIfPossible(cx);
    assertNotNull(dax);
    assertTrue(dax instanceof CassandraInvalidConfigurationInQueryException);
    assertEquals(cx, dax.getCause());

    cx = new InvalidQueryException(msg);
    dax = tx.translateExceptionIfPossible(cx);
    assertNotNull(dax);
    assertTrue(dax instanceof CassandraInvalidQueryException);
    assertEquals(cx, dax.getCause());
  }
View Full Code Here

TOP

Related Classes of com.datastax.driver.core.exceptions.InvalidQueryException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.