package sac.exception;

/**
 * Title:
 * Description:
 * Copyright:    Copyright (c) 2001
 * Company:
 * @author
 * @version 1.0
 */
 import sac.util.ChainException;

public class ItemNaoCadastradoException extends ChainException {

  public ItemNaoCadastradoException() {
    super();
  }

  public ItemNaoCadastradoException(String msg) {
      super(msg);
  }
}