OpenCores
URL https://opencores.org/ocsvn/fpga-cf/fpga-cf/trunk

Subversion Repositories fpga-cf

[/] [fpga-cf/] [trunk/] [java/] [src/] [edu/] [byu/] [cc/] [plieber/] [fpgaenet/] [debug/] [llparse/] [RAMTypeException.java] - Rev 2

Compare with Previous | Blame | View Log

/*
@LICENSE@
*/
 
package edu.byu.cc.plieber.fpgaenet.debug.llparse;
 
/**
 * An exception indicating that a problem was encountered regarding
 * the type of a RAM. The problem usually is a unknown RAM type.
 *
 * @author Paul Graham */
class RAMTypeException extends Exception {
 
  /** Standard parameterless constructor */
  RAMTypeException(){
    super();
  }
 
  /** Constructor with message <code>String</code> 
   *
   * @param message The message <code>String</code> for the
   *                exeception. */
  RAMTypeException(String message) {
    super(message);
  }
}
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.