SharedDataException.java 292 B

1234567891011121314
  1. package com.epson.iprint.shared;
  2. public class SharedDataException extends Exception {
  3. public SharedDataException() {
  4. }
  5. public SharedDataException(String str, Throwable th) {
  6. super(str, th);
  7. }
  8. public SharedDataException(String str) {
  9. super(str);
  10. }
  11. }