1 package net.jaekl.cfb.store;
3 import java.util.Arrays;
5 import net.jaekl.cfb.CfbException;
7 public class StoreException extends CfbException {
9 UNKNOWN_PATTERN, // bug pattern type is not found in the message collection
10 UNKNOWN_CATEGORY // bug category is not found in the message collection
14 private String[] m_info;
16 private static final long serialVersionUID = 1L;
18 public StoreException(Type type, String... info) {
26 public String toString() {
27 return "" + getClass().getName() + ": " + m_type + ": " + Arrays.toString(m_info);