NotImplementedException.java 343 B

12345678910111213141516
  1. /*
  2. Copyright (C) 2006-2007 Serotonin Software Technologies Inc.
  3. @author Matthew Lohbihler
  4. */
  5. package com.serotonin.cdc;
  6. /**
  7. * @author Matthew Lohbihler
  8. */
  9. public class NotImplementedException extends RuntimeException {
  10. static final long serialVersionUID = -1;
  11. public NotImplementedException() {
  12. super();
  13. }
  14. }