Toggle navigation
Toggle navigation
This project
Loading...
Sign in
grogv3
/
grog-cubi
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Jean-Francois Leveque
2016-11-23 14:26:15 +0100
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
df74bb3cd46c0a913590ac70595d69ecf13bad6b
df74bb3c
1 parent
8e6aa244
Exception plus précise.
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
src/main/java/org/legrog/web/publisher/PublisherVersionView.java
src/main/java/org/legrog/web/publisher/PublisherVersionView.java
View file @
df74bb3
...
...
@@ -130,7 +130,7 @@ public class PublisherVersionView implements Serializable {
publisherVersion
=
publisherService
.
getPublisherVersion
(
publisherVersionId
);
if
(
publisherVersion
==
null
)
{
throw
new
Runtim
eException
(
"Publisher version not found"
);
throw
new
IllegalStat
eException
(
"Publisher version not found"
);
}
publisherVersionAuthor
=
publisherVersion
.
getPublisherVersionAuthor
();
publisherVersionDatetime
=
publisherVersion
.
getPublisherVersionDatetime
();
...
...
Please
register
or
login
to post a comment