001    package org.tynamo.exception;
002    
003    public class PersistenceException extends RuntimeException
004    {
005    
006            public PersistenceException()
007            {
008                    super();
009                    // TODO Auto-generated constructor stub
010            }
011    
012            public PersistenceException(String message)
013            {
014                    super(message);
015                    // TODO Auto-generated constructor stub
016            }
017    
018            public PersistenceException(String message, Throwable cause)
019            {
020                    super(message, cause);
021                    // TODO Auto-generated constructor stub
022            }
023    
024            public PersistenceException(Throwable cause)
025            {
026                    super(cause);
027                    // TODO Auto-generated constructor stub
028            }
029    
030    }