Skip to content
Snippets Groups Projects
Commit 120ba593 authored by Colin DAMON's avatar Colin DAMON
Browse files

Set MissingMandatoryValueException constructor private

parent a5653ecd
No related branches found
No related tags found
1 merge request!3Resolve "MissingMandatory private constructor"
Pipeline #30067 passed
...@@ -2,7 +2,7 @@ package com.ippon.pouet.common.domain.error; ...@@ -2,7 +2,7 @@ package com.ippon.pouet.common.domain.error;
public class MissingMandatoryValueException extends PouetException { public class MissingMandatoryValueException extends PouetException {
protected MissingMandatoryValueException(PouetExceptionBuilder builder) { private MissingMandatoryValueException(PouetExceptionBuilder builder) {
super(builder); super(builder);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment