blob: 67be0deaade09114e3e6539560dba90072e6e53f [file] [log] [blame]
slowr13fa5b02017-08-08 16:32:31 -07001/**
2 * This class file was automatically generated by jASN1 v1.8.0 (http://www.openmuc.org)
3 */
4
5package org.onosproject.xran.codecs.api;
6
7import org.openmuc.jasn1.ber.types.BerEnum;
8
9import java.math.BigInteger;
10
11
12public class HOFailureCause extends BerEnum {
13
14 private static final long serialVersionUID = 1L;
15
16 public HOFailureCause() {
17 }
18
19 public HOFailureCause(byte[] code) {
20 super(code);
21 }
22
23 public HOFailureCause(BigInteger value) {
24 super(value);
25 }
26
27 public HOFailureCause(long value) {
28 super(value);
29 }
30
31}