com.coherentlogic.cmr.api.exceptions.GenericCMRRuntimeException.scala Maven / Gradle / Ivy
The newest version!
package com.coherentlogic.cmr.api.exceptions
import org.springframework.core.NestedRuntimeException
class GenericCMRRuntimeException(msg:String, cause:Throwable) extends NestedRuntimeException (msg, cause) {
// def this (msg : String) {
// super(msg);
// }
//
// GenericCMRRuntimeException(String msg, Throwable cause) {
// super(msg, cause);
// }
}