Class FileWritingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
nl.datasteel.crudcraft.codegen.exception.CrudCraftGenerationException
nl.datasteel.crudcraft.codegen.exception.FileWritingException
- All Implemented Interfaces:
Serializable
@ResponseStatus(INTERNAL_SERVER_ERROR)
public class FileWritingException
extends CrudCraftGenerationException
Exception thrown when there is an error writing a file during code generation.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionFileWritingException
(String className) Constructs a new FileWritingException with a default message.FileWritingException
(String className, String message) Constructs a new FileWritingException with a custom message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
FileWritingException
Constructs a new FileWritingException with a default message. -
FileWritingException
Constructs a new FileWritingException with a custom message.- Parameters:
className
- the name of the class for which the file writing failedmessage
- the detail message
-