Showing
2 changed files
with
3 additions
and
3 deletions
1 | /* | 1 | /* |
2 | - * Copyright 2015 Open Networking Laboratory | 2 | + * Copyright 2016 Open Networking Laboratory |
3 | * | 3 | * |
4 | * Licensed under the Apache License, Version 2.0 (the "License"); | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
5 | * you may not use this file except in compliance with the License. | 5 | * you may not use this file except in compliance with the License. | ... | ... |
... | @@ -30,8 +30,8 @@ public interface PcepMessageReader<T> { | ... | @@ -30,8 +30,8 @@ public interface PcepMessageReader<T> { |
30 | * | 30 | * |
31 | * @param bb Channel Buffer | 31 | * @param bb Channel Buffer |
32 | * @return PCEP Message | 32 | * @return PCEP Message |
33 | - * @throws PcepParseException while parsing PCEP message. | 33 | + * @throws PcepParseException while parsing PCEP message |
34 | - * @throws PcepParseException when received message is empty | 34 | + * @throws PcepOutOfBoundMessageException if out-of-bound message is received |
35 | */ | 35 | */ |
36 | T readFrom(ChannelBuffer bb) throws PcepParseException, PcepOutOfBoundMessageException; | 36 | T readFrom(ChannelBuffer bb) throws PcepParseException, PcepOutOfBoundMessageException; |
37 | } | 37 | } | ... | ... |
-
Please register or login to post a comment