Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
CHOReVOLUTION
enactment-engine
Commits
b8fe758b
Commit
b8fe758b
authored
Sep 26, 2016
by
Alessio Carenini
Browse files
Deleted since persistence is managed by Brooklyn
parent
32c955bd
Changes
1
Hide whitespace changes
Inline
Side-by-side
ee2/brooklyn-server/rest/rest-resources/src/main/java/org/apache/brooklyn/rest/chorevolution/exceptions/ChoreographyNotFoundException.java
deleted
100644 → 0
View file @
32c955bd
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
[M@file$ * to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package
org.apache.brooklyn.rest.chorevolution.exceptions
;
public
class
ChoreographyNotFoundException
extends
Exception
{
private
static
final
long
serialVersionUID
=
-
6826427981088351560L
;
private
final
String
chorId
;
public
ChoreographyNotFoundException
(
String
chorId
)
{
this
.
chorId
=
chorId
;
}
public
ChoreographyNotFoundException
(
String
chorId
,
String
message
)
{
super
(
message
);
this
.
chorId
=
chorId
;
}
@Override
public
String
toString
()
{
return
"Choreography "
+
chorId
+
" not found."
;
}
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment