1 16 package org.apache.commons.betwixt.io; 17 18 35 public class CyclicReferenceException extends RuntimeException { 36 37 38 private static final String DEFAULT_MESSAGE 39 = "Bean graph contains a cyclic reference"; 40 41 43 public CyclicReferenceException() { 44 super(DEFAULT_MESSAGE); 45 } 46 47 52 public CyclicReferenceException(String message) { 53 super(message); 54 } 55 } 56 | Popular Tags |