1 23 24 package org.objectweb.jorm.api; 25 26 30 public class PExceptionIO extends PException { 31 32 36 public PExceptionIO(String error) { 37 super(error); 38 } 40 45 public PExceptionIO(Exception e) { 46 super(e, "I/O problem with DS-specific nested exception."); 47 } 49 public PExceptionIO(Exception e, String msg) { 50 super(e, "I/O problem with DS-specific nested exception: " + msg); 51 } } 53 | Popular Tags |