com.github.sursmobil.dac.DacException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdac Show documentation
Show all versions of jdac Show documentation
Deployment agnostic configuration library for Java
package com.github.sursmobil.dac;
/**
* Created by sjanota on 08/03/16.
*/
public class DacException extends RuntimeException{
public DacException(String s) {
super(s);
}
}