com.att.nsa.configs.ConfigDbException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of saToolkit Show documentation
Show all versions of saToolkit Show documentation
Library of code used in various service assurance systems
/*******************************************************************************
* Copyright (c) 2016 AT&T Intellectual Property. All rights reserved.
*******************************************************************************/
package com.att.nsa.configs;
public class ConfigDbException extends Exception
{
public ConfigDbException ( String msg ) { super(msg); }
public ConfigDbException ( String msg, Throwable t ) { super(msg,t); }
public ConfigDbException ( Throwable t ) { super(t); }
private static final long serialVersionUID = 1L;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy