Tabnine Logo
BillingExceptionJson.getMessage
Code IndexAdd Tabnine to your IDE (free)

How to use
getMessage
method
in
com.ning.billing.jaxrs.json.BillingExceptionJson

Best Java code snippets using com.ning.billing.jaxrs.json.BillingExceptionJson.getMessage (Showing top 2 results out of 315)

origin: com.ning.billing/killbill-jaxrs

@Test(groups = "fast")
public void testJson() throws Exception {
  final String className = UUID.randomUUID().toString();
  final int code = Integer.MIN_VALUE;
  final String message = UUID.randomUUID().toString();
  final String causeClassName = UUID.randomUUID().toString();
  final String causeMessage = UUID.randomUUID().toString();
  final BillingExceptionJson exceptionJson = new BillingExceptionJson(className, code, message, causeClassName, causeMessage, ImmutableList.<StackTraceElementJson>of());
  Assert.assertEquals(exceptionJson.getClassName(), className);
  Assert.assertEquals(exceptionJson.getCode(), (Integer) code);
  Assert.assertEquals(exceptionJson.getMessage(), message);
  Assert.assertEquals(exceptionJson.getCauseClassName(), causeClassName);
  Assert.assertEquals(exceptionJson.getCauseMessage(), causeMessage);
  Assert.assertEquals(exceptionJson.getStackTrace().size(), 0);
  final String asJson = mapper.writeValueAsString(exceptionJson);
  final BillingExceptionJson fromJson = mapper.readValue(asJson, BillingExceptionJson.class);
  Assert.assertEquals(fromJson, exceptionJson);
}
origin: com.ning.billing/killbill-jaxrs

  @Test(groups = "fast")
  public void testFromException() throws Exception {
    final String nil = null;
    try {
      nil.toString();
      Assert.fail();
    } catch (NullPointerException e) {
      final BillingExceptionJson exceptionJson = new BillingExceptionJson(e);
      Assert.assertEquals(exceptionJson.getClassName(), e.getClass().getName());
      Assert.assertNull(exceptionJson.getCode());
      Assert.assertNull(exceptionJson.getMessage());
      Assert.assertNull(exceptionJson.getCauseClassName());
      Assert.assertNull(exceptionJson.getCauseMessage());
      Assert.assertFalse(exceptionJson.getStackTrace().isEmpty());
      Assert.assertEquals(exceptionJson.getStackTrace().get(0).getClassName(), TestBillingExceptionJson.class.getName());
      Assert.assertEquals(exceptionJson.getStackTrace().get(0).getMethodName(), "testFromException");
      Assert.assertFalse(exceptionJson.getStackTrace().get(0).getNativeMethod());
    }
  }
}
com.ning.billing.jaxrs.jsonBillingExceptionJsongetMessage

Popular methods of BillingExceptionJson

  • <init>
  • getCauseClassName
  • getCauseMessage
  • getClassName
  • getCode
  • getStackTrace

Popular in Java

  • Making http requests using okhttp
  • requestLocationUpdates (LocationManager)
  • onRequestPermissionsResult (Fragment)
  • compareTo (BigDecimal)
  • FlowLayout (java.awt)
    A flow layout arranges components in a left-to-right flow, much like lines of text in a paragraph. F
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • BigDecimal (java.math)
    An immutable arbitrary-precision signed decimal.A value is represented by an arbitrary-precision "un
  • ServerSocket (java.net)
    This class represents a server-side socket that waits for incoming client connections. A ServerSocke
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • Best plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now