Untitled
unknown
plain_text
a year ago
363 B
4
Indexable
package com.jnj.mdm.exception;
public class CategoryException extends Exception {
private static final long serialVersionUID = 1L;
String errorMessage;
public CategoryException(String errorMessage) {
super(errorMessage);
}
@Override
public String toString() {
return "CategoryException [errorMessage=" + super.getMessage() + "]";
}
}Editor is loading...
Leave a Comment