package org.mongodb.morphia.converters;


Author:Uwe Schaefer, (us@thomas-daily.de)
/** * @author Uwe Schaefer, (us@thomas-daily.de) */
public class ConverterNotFoundException extends RuntimeException {
Creates the ConverterNotFoundException.
Params:
  • msg – the exception message
/** * Creates the ConverterNotFoundException. * * @param msg the exception message */
public ConverterNotFoundException(final String msg) { super(msg); } }